rt2x00: remove __dev* attributes
authorBill Pemberton <wfp5p@virginia.edu>
Mon, 3 Dec 2012 14:56:39 +0000 (09:56 -0500)
committerJohn W. Linville <linville@tuxdriver.com>
Thu, 6 Dec 2012 20:04:58 +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>
Cc: Ivo van Doorn <IvDoorn@gmail.com>
Cc: Gertjan van Wingerde <gwingerde@gmail.com>
Cc: Helmut Schaa <helmut.schaa@googlemail.com>
Cc: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/rt2x00/rt2400pci.c
drivers/net/wireless/rt2x00/rt2500pci.c
drivers/net/wireless/rt2x00/rt2800pci.c
drivers/net/wireless/rt2x00/rt61pci.c

index e3a2d9070cf655acdfb9758a525c5cc7a71575a9..a2d2bc2c7b3dde238e373e422d1f54051e08b832 100644 (file)
@@ -1831,7 +1831,7 @@ static struct pci_driver rt2400pci_driver = {
        .name           = KBUILD_MODNAME,
        .id_table       = rt2400pci_device_table,
        .probe          = rt2400pci_probe,
-       .remove         = __devexit_p(rt2x00pci_remove),
+       .remove         = rt2x00pci_remove,
        .suspend        = rt2x00pci_suspend,
        .resume         = rt2x00pci_resume,
 };
index 479d756e275b388fc5d17b77bde4303e27117e48..9bea10f53f0a9179d9f2055e3df961c10802e211 100644 (file)
@@ -2122,7 +2122,7 @@ static struct pci_driver rt2500pci_driver = {
        .name           = KBUILD_MODNAME,
        .id_table       = rt2500pci_device_table,
        .probe          = rt2500pci_probe,
-       .remove         = __devexit_p(rt2x00pci_remove),
+       .remove         = rt2x00pci_remove,
        .suspend        = rt2x00pci_suspend,
        .resume         = rt2x00pci_resume,
 };
index 27829e1e2e38964b2085dc84e30f618b3f72f97e..9224d874bf24b62e017bfe8906f686b929a45db6 100644 (file)
@@ -1176,7 +1176,7 @@ static struct platform_driver rt2800soc_driver = {
                .mod_name       = KBUILD_MODNAME,
        },
        .probe          = rt2800soc_probe,
-       .remove         = __devexit_p(rt2x00soc_remove),
+       .remove         = rt2x00soc_remove,
        .suspend        = rt2x00soc_suspend,
        .resume         = rt2x00soc_resume,
 };
@@ -1193,7 +1193,7 @@ static struct pci_driver rt2800pci_driver = {
        .name           = KBUILD_MODNAME,
        .id_table       = rt2800pci_device_table,
        .probe          = rt2800pci_probe,
-       .remove         = __devexit_p(rt2x00pci_remove),
+       .remove         = rt2x00pci_remove,
        .suspend        = rt2x00pci_suspend,
        .resume         = rt2x00pci_resume,
 };
index d6582a2fa3534879614a23dd29435e747a0cca0c..f95792cfcf8922e17222fec2feddc34f5117c308 100644 (file)
@@ -3094,7 +3094,7 @@ static struct pci_driver rt61pci_driver = {
        .name           = KBUILD_MODNAME,
        .id_table       = rt61pci_device_table,
        .probe          = rt61pci_probe,
-       .remove         = __devexit_p(rt2x00pci_remove),
+       .remove         = rt2x00pci_remove,
        .suspend        = rt2x00pci_suspend,
        .resume         = rt2x00pci_resume,
 };