diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-12-03 09:56:37 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-12-06 15:04:58 -0500 |
commit | baa366cda6ec9bf033301a4f547c26c833bd5930 (patch) | |
tree | fedbfb188918271316fc724992a6238376c516d3 /drivers/net/wireless/orinoco/orinoco_pci.c | |
parent | 8dee5eef2ab313e519e6ce3c3bf9a16cfc6f5907 (diff) |
orinoco: remove __dev* attributes
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>
Diffstat (limited to 'drivers/net/wireless/orinoco/orinoco_pci.c')
-rw-r--r-- | drivers/net/wireless/orinoco/orinoco_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/orinoco/orinoco_pci.c b/drivers/net/wireless/orinoco/orinoco_pci.c index 6058c66b844e..677bf14eca84 100644 --- a/drivers/net/wireless/orinoco/orinoco_pci.c +++ b/drivers/net/wireless/orinoco/orinoco_pci.c | |||
@@ -199,7 +199,7 @@ static int orinoco_pci_init_one(struct pci_dev *pdev, | |||
199 | return err; | 199 | return err; |
200 | } | 200 | } |
201 | 201 | ||
202 | static void __devexit orinoco_pci_remove_one(struct pci_dev *pdev) | 202 | static void orinoco_pci_remove_one(struct pci_dev *pdev) |
203 | { | 203 | { |
204 | struct orinoco_private *priv = pci_get_drvdata(pdev); | 204 | struct orinoco_private *priv = pci_get_drvdata(pdev); |
205 | 205 | ||
@@ -228,7 +228,7 @@ static struct pci_driver orinoco_pci_driver = { | |||
228 | .name = DRIVER_NAME, | 228 | .name = DRIVER_NAME, |
229 | .id_table = orinoco_pci_id_table, | 229 | .id_table = orinoco_pci_id_table, |
230 | .probe = orinoco_pci_init_one, | 230 | .probe = orinoco_pci_init_one, |
231 | .remove = __devexit_p(orinoco_pci_remove_one), | 231 | .remove = orinoco_pci_remove_one, |
232 | .suspend = orinoco_pci_suspend, | 232 | .suspend = orinoco_pci_suspend, |
233 | .resume = orinoco_pci_resume, | 233 | .resume = orinoco_pci_resume, |
234 | }; | 234 | }; |