diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-12-03 09:56:42 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-12-06 15:04:59 -0500 |
commit | b74324d1048271240f65b2d91816d15e72dd80dd (patch) | |
tree | f528c691b3697d0b15e05a9044b9023de09bda14 /drivers/net/wireless/ti/wl18xx/main.c | |
parent | fd549f135c43d60b92aff7cfbbfdf4e79b6cc631 (diff) |
wlcore/wl18xx/wl12xx: 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>
Cc: Luciano Coelho <coelho@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ti/wl18xx/main.c')
-rw-r--r-- | drivers/net/wireless/ti/wl18xx/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/ti/wl18xx/main.c b/drivers/net/wireless/ti/wl18xx/main.c index a39682a7c25f..8d8c1f8c63b7 100644 --- a/drivers/net/wireless/ti/wl18xx/main.c +++ b/drivers/net/wireless/ti/wl18xx/main.c | |||
@@ -1499,7 +1499,7 @@ static int wl18xx_setup(struct wl1271 *wl) | |||
1499 | return 0; | 1499 | return 0; |
1500 | } | 1500 | } |
1501 | 1501 | ||
1502 | static int __devinit wl18xx_probe(struct platform_device *pdev) | 1502 | static int wl18xx_probe(struct platform_device *pdev) |
1503 | { | 1503 | { |
1504 | struct wl1271 *wl; | 1504 | struct wl1271 *wl; |
1505 | struct ieee80211_hw *hw; | 1505 | struct ieee80211_hw *hw; |
@@ -1528,7 +1528,7 @@ out: | |||
1528 | return ret; | 1528 | return ret; |
1529 | } | 1529 | } |
1530 | 1530 | ||
1531 | static const struct platform_device_id wl18xx_id_table[] __devinitconst = { | 1531 | static const struct platform_device_id wl18xx_id_table[] = { |
1532 | { "wl18xx", 0 }, | 1532 | { "wl18xx", 0 }, |
1533 | { } /* Terminating Entry */ | 1533 | { } /* Terminating Entry */ |
1534 | }; | 1534 | }; |
@@ -1536,7 +1536,7 @@ MODULE_DEVICE_TABLE(platform, wl18xx_id_table); | |||
1536 | 1536 | ||
1537 | static struct platform_driver wl18xx_driver = { | 1537 | static struct platform_driver wl18xx_driver = { |
1538 | .probe = wl18xx_probe, | 1538 | .probe = wl18xx_probe, |
1539 | .remove = __devexit_p(wlcore_remove), | 1539 | .remove = wlcore_remove, |
1540 | .id_table = wl18xx_id_table, | 1540 | .id_table = wl18xx_id_table, |
1541 | .driver = { | 1541 | .driver = { |
1542 | .name = "wl18xx_driver", | 1542 | .name = "wl18xx_driver", |