aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-11-19 13:21:08 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-11-21 16:27:16 -0500
commit7690417db5085f0de03aa70b8ca01b0118e8a1b4 (patch)
tree794777a784aac86d9e30627092429d754b9070f4 /drivers/usb/host
parent2bd6a021e887c675116ff8cdacc3af49999a2224 (diff)
usb: remove use of __devexit_p
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer needed. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Peter Korsgaard <jacmet@sunsite.dk> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Acked-by: Felipe Balbi <balbi@ti.com> Cc: Li Yang <leoli@freescale.com> Cc: Alan Stern <stern@rowland.harvard.edu> Cc: Wan ZongShun <mcuos.com@gmail.com> Cc: Ben Dooks <ben-linux@fluff.org> Cc: Kukjin Kim <kgene.kim@samsung.com> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com> Acked-by: Peter Korsgaard <jacmet@sunsite.dk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r--drivers/usb/host/bcma-hcd.c2
-rw-r--r--drivers/usb/host/ehci-atmel.c2
-rw-r--r--drivers/usb/host/ehci-msm.c2
-rw-r--r--drivers/usb/host/ehci-platform.c2
-rw-r--r--drivers/usb/host/ehci-s5p.c2
-rw-r--r--drivers/usb/host/ehci-w90x900.c2
-rw-r--r--drivers/usb/host/fhci-hcd.c2
-rw-r--r--drivers/usb/host/fsl-mph-dr-of.c2
-rw-r--r--drivers/usb/host/isp1362-hcd.c2
-rw-r--r--drivers/usb/host/isp1760-if.c2
-rw-r--r--drivers/usb/host/ohci-at91.c2
-rw-r--r--drivers/usb/host/ohci-exynos.c2
-rw-r--r--drivers/usb/host/ohci-jz4740.c2
-rw-r--r--drivers/usb/host/ohci-omap3.c2
-rw-r--r--drivers/usb/host/ohci-platform.c2
-rw-r--r--drivers/usb/host/ohci-s3c2410.c2
-rw-r--r--drivers/usb/host/ohci-tmio.c2
-rw-r--r--drivers/usb/host/r8a66597-hcd.c2
-rw-r--r--drivers/usb/host/sl811-hcd.c2
-rw-r--r--drivers/usb/host/ssb-hcd.c2
-rw-r--r--drivers/usb/host/u132-hcd.c2
21 files changed, 21 insertions, 21 deletions
diff --git a/drivers/usb/host/bcma-hcd.c b/drivers/usb/host/bcma-hcd.c
index 443da21d73ca..f5143a066add 100644
--- a/drivers/usb/host/bcma-hcd.c
+++ b/drivers/usb/host/bcma-hcd.c
@@ -316,7 +316,7 @@ static struct bcma_driver bcma_hcd_driver = {
316 .name = KBUILD_MODNAME, 316 .name = KBUILD_MODNAME,
317 .id_table = bcma_hcd_table, 317 .id_table = bcma_hcd_table,
318 .probe = bcma_hcd_probe, 318 .probe = bcma_hcd_probe,
319 .remove = __devexit_p(bcma_hcd_remove), 319 .remove = bcma_hcd_remove,
320 .shutdown = bcma_hcd_shutdown, 320 .shutdown = bcma_hcd_shutdown,
321 .suspend = bcma_hcd_suspend, 321 .suspend = bcma_hcd_suspend,
322 .resume = bcma_hcd_resume, 322 .resume = bcma_hcd_resume,
diff --git a/drivers/usb/host/ehci-atmel.c b/drivers/usb/host/ehci-atmel.c
index d23321ec0e46..33f798ec1c7d 100644
--- a/drivers/usb/host/ehci-atmel.c
+++ b/drivers/usb/host/ehci-atmel.c
@@ -207,7 +207,7 @@ MODULE_DEVICE_TABLE(of, atmel_ehci_dt_ids);
207 207
208static struct platform_driver ehci_atmel_driver = { 208static struct platform_driver ehci_atmel_driver = {
209 .probe = ehci_atmel_drv_probe, 209 .probe = ehci_atmel_drv_probe,
210 .remove = __devexit_p(ehci_atmel_drv_remove), 210 .remove = ehci_atmel_drv_remove,
211 .shutdown = usb_hcd_platform_shutdown, 211 .shutdown = usb_hcd_platform_shutdown,
212 .driver = { 212 .driver = {
213 .name = "atmel-ehci", 213 .name = "atmel-ehci",
diff --git a/drivers/usb/host/ehci-msm.c b/drivers/usb/host/ehci-msm.c
index 7fa1ba4de789..e0acfd589a83 100644
--- a/drivers/usb/host/ehci-msm.c
+++ b/drivers/usb/host/ehci-msm.c
@@ -220,7 +220,7 @@ static const struct dev_pm_ops ehci_msm_dev_pm_ops = {
220 220
221static struct platform_driver ehci_msm_driver = { 221static struct platform_driver ehci_msm_driver = {
222 .probe = ehci_msm_probe, 222 .probe = ehci_msm_probe,
223 .remove = __devexit_p(ehci_msm_remove), 223 .remove = ehci_msm_remove,
224 .driver = { 224 .driver = {
225 .name = "msm_hsusb_host", 225 .name = "msm_hsusb_host",
226 .pm = &ehci_msm_dev_pm_ops, 226 .pm = &ehci_msm_dev_pm_ops,
diff --git a/drivers/usb/host/ehci-platform.c b/drivers/usb/host/ehci-platform.c
index f14c542b142f..b807648876be 100644
--- a/drivers/usb/host/ehci-platform.c
+++ b/drivers/usb/host/ehci-platform.c
@@ -196,7 +196,7 @@ static const struct dev_pm_ops ehci_platform_pm_ops = {
196static struct platform_driver ehci_platform_driver = { 196static struct platform_driver ehci_platform_driver = {
197 .id_table = ehci_platform_table, 197 .id_table = ehci_platform_table,
198 .probe = ehci_platform_probe, 198 .probe = ehci_platform_probe,
199 .remove = __devexit_p(ehci_platform_remove), 199 .remove = ehci_platform_remove,
200 .shutdown = usb_hcd_platform_shutdown, 200 .shutdown = usb_hcd_platform_shutdown,
201 .driver = { 201 .driver = {
202 .owner = THIS_MODULE, 202 .owner = THIS_MODULE,
diff --git a/drivers/usb/host/ehci-s5p.c b/drivers/usb/host/ehci-s5p.c
index abc178d21fe4..f90a8815f4a8 100644
--- a/drivers/usb/host/ehci-s5p.c
+++ b/drivers/usb/host/ehci-s5p.c
@@ -274,7 +274,7 @@ MODULE_DEVICE_TABLE(of, exynos_ehci_match);
274 274
275static struct platform_driver s5p_ehci_driver = { 275static struct platform_driver s5p_ehci_driver = {
276 .probe = s5p_ehci_probe, 276 .probe = s5p_ehci_probe,
277 .remove = __devexit_p(s5p_ehci_remove), 277 .remove = s5p_ehci_remove,
278 .shutdown = s5p_ehci_shutdown, 278 .shutdown = s5p_ehci_shutdown,
279 .driver = { 279 .driver = {
280 .name = "s5p-ehci", 280 .name = "s5p-ehci",
diff --git a/drivers/usb/host/ehci-w90x900.c b/drivers/usb/host/ehci-w90x900.c
index fdd7c4873cf2..7bcb8b2863de 100644
--- a/drivers/usb/host/ehci-w90x900.c
+++ b/drivers/usb/host/ehci-w90x900.c
@@ -166,7 +166,7 @@ static int __devexit ehci_w90x900_remove(struct platform_device *pdev)
166 166
167static struct platform_driver ehci_hcd_w90x900_driver = { 167static struct platform_driver ehci_hcd_w90x900_driver = {
168 .probe = ehci_w90x900_probe, 168 .probe = ehci_w90x900_probe,
169 .remove = __devexit_p(ehci_w90x900_remove), 169 .remove = ehci_w90x900_remove,
170 .driver = { 170 .driver = {
171 .name = "w90x900-ehci", 171 .name = "w90x900-ehci",
172 .owner = THIS_MODULE, 172 .owner = THIS_MODULE,
diff --git a/drivers/usb/host/fhci-hcd.c b/drivers/usb/host/fhci-hcd.c
index 7da1a26bed2e..92f4b99a3ab2 100644
--- a/drivers/usb/host/fhci-hcd.c
+++ b/drivers/usb/host/fhci-hcd.c
@@ -821,7 +821,7 @@ static struct platform_driver of_fhci_driver = {
821 .of_match_table = of_fhci_match, 821 .of_match_table = of_fhci_match,
822 }, 822 },
823 .probe = of_fhci_probe, 823 .probe = of_fhci_probe,
824 .remove = __devexit_p(of_fhci_remove), 824 .remove = of_fhci_remove,
825}; 825};
826 826
827module_platform_driver(of_fhci_driver); 827module_platform_driver(of_fhci_driver);
diff --git a/drivers/usb/host/fsl-mph-dr-of.c b/drivers/usb/host/fsl-mph-dr-of.c
index 1e771292383f..3a5c82f67232 100644
--- a/drivers/usb/host/fsl-mph-dr-of.c
+++ b/drivers/usb/host/fsl-mph-dr-of.c
@@ -336,7 +336,7 @@ static struct platform_driver fsl_usb2_mph_dr_driver = {
336 .of_match_table = fsl_usb2_mph_dr_of_match, 336 .of_match_table = fsl_usb2_mph_dr_of_match,
337 }, 337 },
338 .probe = fsl_usb2_mph_dr_of_probe, 338 .probe = fsl_usb2_mph_dr_of_probe,
339 .remove = __devexit_p(fsl_usb2_mph_dr_of_remove), 339 .remove = fsl_usb2_mph_dr_of_remove,
340}; 340};
341 341
342module_platform_driver(fsl_usb2_mph_dr_driver); 342module_platform_driver(fsl_usb2_mph_dr_driver);
diff --git a/drivers/usb/host/isp1362-hcd.c b/drivers/usb/host/isp1362-hcd.c
index 256326322cfd..1ad9d2007222 100644
--- a/drivers/usb/host/isp1362-hcd.c
+++ b/drivers/usb/host/isp1362-hcd.c
@@ -2856,7 +2856,7 @@ static int isp1362_resume(struct platform_device *pdev)
2856 2856
2857static struct platform_driver isp1362_driver = { 2857static struct platform_driver isp1362_driver = {
2858 .probe = isp1362_probe, 2858 .probe = isp1362_probe,
2859 .remove = __devexit_p(isp1362_remove), 2859 .remove = isp1362_remove,
2860 2860
2861 .suspend = isp1362_suspend, 2861 .suspend = isp1362_suspend,
2862 .resume = isp1362_resume, 2862 .resume = isp1362_resume,
diff --git a/drivers/usb/host/isp1760-if.c b/drivers/usb/host/isp1760-if.c
index 958379f9de79..5fb3caee7706 100644
--- a/drivers/usb/host/isp1760-if.c
+++ b/drivers/usb/host/isp1760-if.c
@@ -432,7 +432,7 @@ static int __devexit isp1760_plat_remove(struct platform_device *pdev)
432 432
433static struct platform_driver isp1760_plat_driver = { 433static struct platform_driver isp1760_plat_driver = {
434 .probe = isp1760_plat_probe, 434 .probe = isp1760_plat_probe,
435 .remove = __devexit_p(isp1760_plat_remove), 435 .remove = isp1760_plat_remove,
436 .driver = { 436 .driver = {
437 .name = "isp1760", 437 .name = "isp1760",
438 }, 438 },
diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c
index 908d84af1dd7..e4480029bc0c 100644
--- a/drivers/usb/host/ohci-at91.c
+++ b/drivers/usb/host/ohci-at91.c
@@ -717,7 +717,7 @@ MODULE_ALIAS("platform:at91_ohci");
717 717
718static struct platform_driver ohci_hcd_at91_driver = { 718static struct platform_driver ohci_hcd_at91_driver = {
719 .probe = ohci_hcd_at91_drv_probe, 719 .probe = ohci_hcd_at91_drv_probe,
720 .remove = __devexit_p(ohci_hcd_at91_drv_remove), 720 .remove = ohci_hcd_at91_drv_remove,
721 .shutdown = usb_hcd_platform_shutdown, 721 .shutdown = usb_hcd_platform_shutdown,
722 .suspend = ohci_hcd_at91_drv_suspend, 722 .suspend = ohci_hcd_at91_drv_suspend,
723 .resume = ohci_hcd_at91_drv_resume, 723 .resume = ohci_hcd_at91_drv_resume,
diff --git a/drivers/usb/host/ohci-exynos.c b/drivers/usb/host/ohci-exynos.c
index 6a30fc5bec93..2f673e872b7d 100644
--- a/drivers/usb/host/ohci-exynos.c
+++ b/drivers/usb/host/ohci-exynos.c
@@ -275,7 +275,7 @@ MODULE_DEVICE_TABLE(of, exynos_ohci_match);
275 275
276static struct platform_driver exynos_ohci_driver = { 276static struct platform_driver exynos_ohci_driver = {
277 .probe = exynos_ohci_probe, 277 .probe = exynos_ohci_probe,
278 .remove = __devexit_p(exynos_ohci_remove), 278 .remove = exynos_ohci_remove,
279 .shutdown = exynos_ohci_shutdown, 279 .shutdown = exynos_ohci_shutdown,
280 .driver = { 280 .driver = {
281 .name = "exynos-ohci", 281 .name = "exynos-ohci",
diff --git a/drivers/usb/host/ohci-jz4740.c b/drivers/usb/host/ohci-jz4740.c
index 931d588c3fb5..b4921b713557 100644
--- a/drivers/usb/host/ohci-jz4740.c
+++ b/drivers/usb/host/ohci-jz4740.c
@@ -266,7 +266,7 @@ static __devexit int jz4740_ohci_remove(struct platform_device *pdev)
266 266
267static struct platform_driver ohci_hcd_jz4740_driver = { 267static struct platform_driver ohci_hcd_jz4740_driver = {
268 .probe = jz4740_ohci_probe, 268 .probe = jz4740_ohci_probe,
269 .remove = __devexit_p(jz4740_ohci_remove), 269 .remove = jz4740_ohci_remove,
270 .driver = { 270 .driver = {
271 .name = "jz4740-ohci", 271 .name = "jz4740-ohci",
272 .owner = THIS_MODULE, 272 .owner = THIS_MODULE,
diff --git a/drivers/usb/host/ohci-omap3.c b/drivers/usb/host/ohci-omap3.c
index 1b8133b6e451..6bee6f191c86 100644
--- a/drivers/usb/host/ohci-omap3.c
+++ b/drivers/usb/host/ohci-omap3.c
@@ -232,7 +232,7 @@ static void ohci_hcd_omap3_shutdown(struct platform_device *pdev)
232 232
233static struct platform_driver ohci_hcd_omap3_driver = { 233static struct platform_driver ohci_hcd_omap3_driver = {
234 .probe = ohci_hcd_omap3_probe, 234 .probe = ohci_hcd_omap3_probe,
235 .remove = __devexit_p(ohci_hcd_omap3_remove), 235 .remove = ohci_hcd_omap3_remove,
236 .shutdown = ohci_hcd_omap3_shutdown, 236 .shutdown = ohci_hcd_omap3_shutdown,
237 .driver = { 237 .driver = {
238 .name = "ohci-omap3", 238 .name = "ohci-omap3",
diff --git a/drivers/usb/host/ohci-platform.c b/drivers/usb/host/ohci-platform.c
index bda4e0bb8ab3..ffe6c9808473 100644
--- a/drivers/usb/host/ohci-platform.c
+++ b/drivers/usb/host/ohci-platform.c
@@ -214,7 +214,7 @@ static const struct dev_pm_ops ohci_platform_pm_ops = {
214static struct platform_driver ohci_platform_driver = { 214static struct platform_driver ohci_platform_driver = {
215 .id_table = ohci_platform_table, 215 .id_table = ohci_platform_table,
216 .probe = ohci_platform_probe, 216 .probe = ohci_platform_probe,
217 .remove = __devexit_p(ohci_platform_remove), 217 .remove = ohci_platform_remove,
218 .shutdown = usb_hcd_platform_shutdown, 218 .shutdown = usb_hcd_platform_shutdown,
219 .driver = { 219 .driver = {
220 .owner = THIS_MODULE, 220 .owner = THIS_MODULE,
diff --git a/drivers/usb/host/ohci-s3c2410.c b/drivers/usb/host/ohci-s3c2410.c
index e84190f25c6b..5c5c017850d8 100644
--- a/drivers/usb/host/ohci-s3c2410.c
+++ b/drivers/usb/host/ohci-s3c2410.c
@@ -524,7 +524,7 @@ static const struct dev_pm_ops ohci_hcd_s3c2410_pm_ops = {
524 524
525static struct platform_driver ohci_hcd_s3c2410_driver = { 525static struct platform_driver ohci_hcd_s3c2410_driver = {
526 .probe = ohci_hcd_s3c2410_drv_probe, 526 .probe = ohci_hcd_s3c2410_drv_probe,
527 .remove = __devexit_p(ohci_hcd_s3c2410_drv_remove), 527 .remove = ohci_hcd_s3c2410_drv_remove,
528 .shutdown = usb_hcd_platform_shutdown, 528 .shutdown = usb_hcd_platform_shutdown,
529 .driver = { 529 .driver = {
530 .owner = THIS_MODULE, 530 .owner = THIS_MODULE,
diff --git a/drivers/usb/host/ohci-tmio.c b/drivers/usb/host/ohci-tmio.c
index 2c9ab8f126d4..94c6c550a953 100644
--- a/drivers/usb/host/ohci-tmio.c
+++ b/drivers/usb/host/ohci-tmio.c
@@ -363,7 +363,7 @@ static int ohci_hcd_tmio_drv_resume(struct platform_device *dev)
363 363
364static struct platform_driver ohci_hcd_tmio_driver = { 364static struct platform_driver ohci_hcd_tmio_driver = {
365 .probe = ohci_hcd_tmio_drv_probe, 365 .probe = ohci_hcd_tmio_drv_probe,
366 .remove = __devexit_p(ohci_hcd_tmio_drv_remove), 366 .remove = ohci_hcd_tmio_drv_remove,
367 .shutdown = usb_hcd_platform_shutdown, 367 .shutdown = usb_hcd_platform_shutdown,
368 .suspend = ohci_hcd_tmio_drv_suspend, 368 .suspend = ohci_hcd_tmio_drv_suspend,
369 .resume = ohci_hcd_tmio_drv_resume, 369 .resume = ohci_hcd_tmio_drv_resume,
diff --git a/drivers/usb/host/r8a66597-hcd.c b/drivers/usb/host/r8a66597-hcd.c
index b3eea0ba97a9..4e0436fc334d 100644
--- a/drivers/usb/host/r8a66597-hcd.c
+++ b/drivers/usb/host/r8a66597-hcd.c
@@ -2532,7 +2532,7 @@ clean_up:
2532 2532
2533static struct platform_driver r8a66597_driver = { 2533static struct platform_driver r8a66597_driver = {
2534 .probe = r8a66597_probe, 2534 .probe = r8a66597_probe,
2535 .remove = __devexit_p(r8a66597_remove), 2535 .remove = r8a66597_remove,
2536 .driver = { 2536 .driver = {
2537 .name = (char *) hcd_name, 2537 .name = (char *) hcd_name,
2538 .owner = THIS_MODULE, 2538 .owner = THIS_MODULE,
diff --git a/drivers/usb/host/sl811-hcd.c b/drivers/usb/host/sl811-hcd.c
index 619b05f42d4f..15f20de3e05d 100644
--- a/drivers/usb/host/sl811-hcd.c
+++ b/drivers/usb/host/sl811-hcd.c
@@ -1808,7 +1808,7 @@ sl811h_resume(struct platform_device *dev)
1808/* this driver is exported so sl811_cs can depend on it */ 1808/* this driver is exported so sl811_cs can depend on it */
1809struct platform_driver sl811h_driver = { 1809struct platform_driver sl811h_driver = {
1810 .probe = sl811h_probe, 1810 .probe = sl811h_probe,
1811 .remove = __devexit_p(sl811h_remove), 1811 .remove = sl811h_remove,
1812 1812
1813 .suspend = sl811h_suspend, 1813 .suspend = sl811h_suspend,
1814 .resume = sl811h_resume, 1814 .resume = sl811h_resume,
diff --git a/drivers/usb/host/ssb-hcd.c b/drivers/usb/host/ssb-hcd.c
index c2a29faba076..4dc9a09dc346 100644
--- a/drivers/usb/host/ssb-hcd.c
+++ b/drivers/usb/host/ssb-hcd.c
@@ -261,7 +261,7 @@ static struct ssb_driver ssb_hcd_driver = {
261 .name = KBUILD_MODNAME, 261 .name = KBUILD_MODNAME,
262 .id_table = ssb_hcd_table, 262 .id_table = ssb_hcd_table,
263 .probe = ssb_hcd_probe, 263 .probe = ssb_hcd_probe,
264 .remove = __devexit_p(ssb_hcd_remove), 264 .remove = ssb_hcd_remove,
265 .shutdown = ssb_hcd_shutdown, 265 .shutdown = ssb_hcd_shutdown,
266 .suspend = ssb_hcd_suspend, 266 .suspend = ssb_hcd_suspend,
267 .resume = ssb_hcd_resume, 267 .resume = ssb_hcd_resume,
diff --git a/drivers/usb/host/u132-hcd.c b/drivers/usb/host/u132-hcd.c
index dbbd1ba25224..8836898d64de 100644
--- a/drivers/usb/host/u132-hcd.c
+++ b/drivers/usb/host/u132-hcd.c
@@ -3212,7 +3212,7 @@ static int u132_resume(struct platform_device *pdev)
3212*/ 3212*/
3213static struct platform_driver u132_platform_driver = { 3213static struct platform_driver u132_platform_driver = {
3214 .probe = u132_probe, 3214 .probe = u132_probe,
3215 .remove = __devexit_p(u132_remove), 3215 .remove = u132_remove,
3216 .suspend = u132_suspend, 3216 .suspend = u132_suspend,
3217 .resume = u132_resume, 3217 .resume = u132_resume,
3218 .driver = { 3218 .driver = {