]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
atmel: remove __dev* attributes
authorBill Pemberton <wfp5p@virginia.edu>
Mon, 3 Dec 2012 14:56:29 +0000 (09:56 -0500)
committerJohn W. Linville <linville@tuxdriver.com>
Thu, 6 Dec 2012 20:04:56 +0000 (15:04 -0500)
CONFIG_HOTPLUG is going away as an option.  As result the __dev*
markings will be going away.

Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst,
and __devexit.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/atmel_pci.c

index 51e33b53386e58a3d85c180d271c1678b8b08a01..c1b159ebcffee4412987c4ba1d22cb080c1ea8d4 100644 (file)
@@ -45,11 +45,11 @@ static struct pci_driver atmel_driver = {
        .name     = "atmel",
        .id_table = card_ids,
        .probe    = atmel_pci_probe,
-       .remove   = __devexit_p(atmel_pci_remove),
+       .remove   = atmel_pci_remove,
 };
 
 
-static int __devinit atmel_pci_probe(struct pci_dev *pdev,
+static int atmel_pci_probe(struct pci_dev *pdev,
                                     const struct pci_device_id *pent)
 {
        struct net_device *dev;
@@ -69,7 +69,7 @@ static int __devinit atmel_pci_probe(struct pci_dev *pdev,
        return 0;
 }
 
-static void __devexit atmel_pci_remove(struct pci_dev *pdev)
+static void atmel_pci_remove(struct pci_dev *pdev)
 {
        stop_atmel_card(pci_get_drvdata(pdev));
 }