staging: rtl8187se: remove use of __devinit
authorBill Pemberton <wfp5p@virginia.edu>
Mon, 19 Nov 2012 18:22:08 +0000 (13:22 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 Nov 2012 22:07:42 +0000 (14:07 -0800)
CONFIG_HOTPLUG is going away as an option so __devinit is no longer
needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8187se/r8180_core.c

index ca097e45064269f8d82fc0d969db006de77a352b..3527ff73332fd51f00a46e7666137ba980f40c1f 100644 (file)
@@ -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");
 
-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);
 
 static void __devexit rtl8180_pci_remove(struct pci_dev *pdev);
@@ -3175,7 +3175,7 @@ static const struct net_device_ops rtl8180_netdev_ops = {
        .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)
 {
        unsigned long ioaddr = 0;
This page took 0.028063 seconds and 5 git commands to generate.