aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ti/wl1251/sdio.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-03 09:56:42 -0500
committerJohn W. Linville <linville@tuxdriver.com>2012-12-06 15:04:59 -0500
commitb74324d1048271240f65b2d91816d15e72dd80dd (patch)
treef528c691b3697d0b15e05a9044b9023de09bda14 /drivers/net/wireless/ti/wl1251/sdio.c
parentfd549f135c43d60b92aff7cfbbfdf4e79b6cc631 (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/wl1251/sdio.c')
-rw-r--r--drivers/net/wireless/ti/wl1251/sdio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ti/wl1251/sdio.c b/drivers/net/wireless/ti/wl1251/sdio.c
index e2750a12c6f1..e57ee48edff6 100644
--- a/drivers/net/wireless/ti/wl1251/sdio.c
+++ b/drivers/net/wireless/ti/wl1251/sdio.c
@@ -305,7 +305,7 @@ out_free_hw:
305 return ret; 305 return ret;
306} 306}
307 307
308static void __devexit wl1251_sdio_remove(struct sdio_func *func) 308static void wl1251_sdio_remove(struct sdio_func *func)
309{ 309{
310 struct wl1251 *wl = sdio_get_drvdata(func); 310 struct wl1251 *wl = sdio_get_drvdata(func);
311 struct wl1251_sdio *wl_sdio = wl->if_priv; 311 struct wl1251_sdio *wl_sdio = wl->if_priv;
@@ -347,7 +347,7 @@ static struct sdio_driver wl1251_sdio_driver = {
347 .name = "wl1251_sdio", 347 .name = "wl1251_sdio",
348 .id_table = wl1251_devices, 348 .id_table = wl1251_devices,
349 .probe = wl1251_sdio_probe, 349 .probe = wl1251_sdio_probe,
350 .remove = __devexit_p(wl1251_sdio_remove), 350 .remove = wl1251_sdio_remove,
351 .drv.pm = &wl1251_sdio_pm_ops, 351 .drv.pm = &wl1251_sdio_pm_ops,
352}; 352};
353 353