Commit 19fc6b57 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

staging: rtl8187se: remove use of __devinit

CONFIG_HOTPLUG is going away as an option so __devinit is no longer
needed.
Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c506fff1
...@@ -74,7 +74,7 @@ module_param(hwwep, int, S_IRUGO|S_IWUSR); ...@@ -74,7 +74,7 @@ module_param(hwwep, int, S_IRUGO|S_IWUSR);
MODULE_PARM_DESC(hwwep, " Try to use hardware WEP support. Still broken and not available on all cards"); MODULE_PARM_DESC(hwwep, " Try to use hardware WEP support. Still broken and not available on all cards");
static int __devinit rtl8180_pci_probe(struct pci_dev *pdev, static int rtl8180_pci_probe(struct pci_dev *pdev,
const struct pci_device_id *id); const struct pci_device_id *id);
static void __devexit rtl8180_pci_remove(struct pci_dev *pdev); static void __devexit rtl8180_pci_remove(struct pci_dev *pdev);
...@@ -3175,7 +3175,7 @@ static const struct net_device_ops rtl8180_netdev_ops = { ...@@ -3175,7 +3175,7 @@ static const struct net_device_ops rtl8180_netdev_ops = {
.ndo_start_xmit = ieee80211_rtl_xmit, .ndo_start_xmit = ieee80211_rtl_xmit,
}; };
static int __devinit rtl8180_pci_probe(struct pci_dev *pdev, static int rtl8180_pci_probe(struct pci_dev *pdev,
const struct pci_device_id *id) const struct pci_device_id *id)
{ {
unsigned long ioaddr = 0; unsigned long ioaddr = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment