diff options
55 files changed, 56 insertions, 56 deletions
diff --git a/drivers/usb/c67x00/c67x00-drv.c b/drivers/usb/c67x00/c67x00-drv.c index 6f3b6e267398..855d538752c4 100644 --- a/drivers/usb/c67x00/c67x00-drv.c +++ b/drivers/usb/c67x00/c67x00-drv.c | |||
| @@ -219,7 +219,7 @@ static int __devexit c67x00_drv_remove(struct platform_device *pdev) | |||
| 219 | 219 | ||
| 220 | static struct platform_driver c67x00_driver = { | 220 | static struct platform_driver c67x00_driver = { |
| 221 | .probe = c67x00_drv_probe, | 221 | .probe = c67x00_drv_probe, |
| 222 | .remove = __devexit_p(c67x00_drv_remove), | 222 | .remove = c67x00_drv_remove, |
| 223 | .driver = { | 223 | .driver = { |
| 224 | .owner = THIS_MODULE, | 224 | .owner = THIS_MODULE, |
| 225 | .name = "c67x00", | 225 | .name = "c67x00", |
diff --git a/drivers/usb/chipidea/ci13xxx_imx.c b/drivers/usb/chipidea/ci13xxx_imx.c index 0f5ca4bea17f..565973035ca8 100644 --- a/drivers/usb/chipidea/ci13xxx_imx.c +++ b/drivers/usb/chipidea/ci13xxx_imx.c | |||
| @@ -252,7 +252,7 @@ MODULE_DEVICE_TABLE(of, ci13xxx_imx_dt_ids); | |||
| 252 | 252 | ||
| 253 | static struct platform_driver ci13xxx_imx_driver = { | 253 | static struct platform_driver ci13xxx_imx_driver = { |
| 254 | .probe = ci13xxx_imx_probe, | 254 | .probe = ci13xxx_imx_probe, |
| 255 | .remove = __devexit_p(ci13xxx_imx_remove), | 255 | .remove = ci13xxx_imx_remove, |
| 256 | .driver = { | 256 | .driver = { |
| 257 | .name = "imx_usb", | 257 | .name = "imx_usb", |
| 258 | .owner = THIS_MODULE, | 258 | .owner = THIS_MODULE, |
diff --git a/drivers/usb/chipidea/ci13xxx_msm.c b/drivers/usb/chipidea/ci13xxx_msm.c index b01feb3be92e..406c5af2da5c 100644 --- a/drivers/usb/chipidea/ci13xxx_msm.c +++ b/drivers/usb/chipidea/ci13xxx_msm.c | |||
| @@ -89,7 +89,7 @@ static int __devexit ci13xxx_msm_remove(struct platform_device *pdev) | |||
| 89 | 89 | ||
| 90 | static struct platform_driver ci13xxx_msm_driver = { | 90 | static struct platform_driver ci13xxx_msm_driver = { |
| 91 | .probe = ci13xxx_msm_probe, | 91 | .probe = ci13xxx_msm_probe, |
| 92 | .remove = __devexit_p(ci13xxx_msm_remove), | 92 | .remove = ci13xxx_msm_remove, |
| 93 | .driver = { .name = "msm_hsusb", }, | 93 | .driver = { .name = "msm_hsusb", }, |
| 94 | }; | 94 | }; |
| 95 | 95 | ||
diff --git a/drivers/usb/chipidea/ci13xxx_pci.c b/drivers/usb/chipidea/ci13xxx_pci.c index 918e14971f2b..e1cb2fb2ef33 100644 --- a/drivers/usb/chipidea/ci13xxx_pci.c +++ b/drivers/usb/chipidea/ci13xxx_pci.c | |||
| @@ -147,7 +147,7 @@ static struct pci_driver ci13xxx_pci_driver = { | |||
| 147 | .name = UDC_DRIVER_NAME, | 147 | .name = UDC_DRIVER_NAME, |
| 148 | .id_table = ci13xxx_pci_id_table, | 148 | .id_table = ci13xxx_pci_id_table, |
| 149 | .probe = ci13xxx_pci_probe, | 149 | .probe = ci13xxx_pci_probe, |
| 150 | .remove = __devexit_p(ci13xxx_pci_remove), | 150 | .remove = ci13xxx_pci_remove, |
| 151 | }; | 151 | }; |
| 152 | 152 | ||
| 153 | module_pci_driver(ci13xxx_pci_driver); | 153 | module_pci_driver(ci13xxx_pci_driver); |
diff --git a/drivers/usb/chipidea/core.c b/drivers/usb/chipidea/core.c index f69d029b4607..46f23f226ae2 100644 --- a/drivers/usb/chipidea/core.c +++ b/drivers/usb/chipidea/core.c | |||
| @@ -523,7 +523,7 @@ static int __devexit ci_hdrc_remove(struct platform_device *pdev) | |||
| 523 | 523 | ||
| 524 | static struct platform_driver ci_hdrc_driver = { | 524 | static struct platform_driver ci_hdrc_driver = { |
| 525 | .probe = ci_hdrc_probe, | 525 | .probe = ci_hdrc_probe, |
| 526 | .remove = __devexit_p(ci_hdrc_remove), | 526 | .remove = ci_hdrc_remove, |
| 527 | .driver = { | 527 | .driver = { |
| 528 | .name = "ci_hdrc", | 528 | .name = "ci_hdrc", |
| 529 | }, | 529 | }, |
diff --git a/drivers/usb/chipidea/usbmisc_imx6q.c b/drivers/usb/chipidea/usbmisc_imx6q.c index 416e3fc58fd0..81238a467296 100644 --- a/drivers/usb/chipidea/usbmisc_imx6q.c +++ b/drivers/usb/chipidea/usbmisc_imx6q.c | |||
| @@ -136,7 +136,7 @@ static int __devexit usbmisc_imx6q_remove(struct platform_device *pdev) | |||
| 136 | 136 | ||
| 137 | static struct platform_driver usbmisc_imx6q_driver = { | 137 | static struct platform_driver usbmisc_imx6q_driver = { |
| 138 | .probe = usbmisc_imx6q_probe, | 138 | .probe = usbmisc_imx6q_probe, |
| 139 | .remove = __devexit_p(usbmisc_imx6q_remove), | 139 | .remove = usbmisc_imx6q_remove, |
| 140 | .driver = { | 140 | .driver = { |
| 141 | .name = "usbmisc_imx6q", | 141 | .name = "usbmisc_imx6q", |
| 142 | .owner = THIS_MODULE, | 142 | .owner = THIS_MODULE, |
diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index 516d4007dfce..cc5dac11d305 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c | |||
| @@ -583,7 +583,7 @@ static int __devexit dwc3_remove(struct platform_device *pdev) | |||
| 583 | 583 | ||
| 584 | static struct platform_driver dwc3_driver = { | 584 | static struct platform_driver dwc3_driver = { |
| 585 | .probe = dwc3_probe, | 585 | .probe = dwc3_probe, |
| 586 | .remove = __devexit_p(dwc3_remove), | 586 | .remove = dwc3_remove, |
| 587 | .driver = { | 587 | .driver = { |
| 588 | .name = "dwc3", | 588 | .name = "dwc3", |
| 589 | }, | 589 | }, |
diff --git a/drivers/usb/dwc3/dwc3-exynos.c b/drivers/usb/dwc3/dwc3-exynos.c index dc35c5476f37..19a98184e580 100644 --- a/drivers/usb/dwc3/dwc3-exynos.c +++ b/drivers/usb/dwc3/dwc3-exynos.c | |||
| @@ -196,7 +196,7 @@ MODULE_DEVICE_TABLE(of, exynos_dwc3_match); | |||
| 196 | 196 | ||
| 197 | static struct platform_driver dwc3_exynos_driver = { | 197 | static struct platform_driver dwc3_exynos_driver = { |
| 198 | .probe = dwc3_exynos_probe, | 198 | .probe = dwc3_exynos_probe, |
| 199 | .remove = __devexit_p(dwc3_exynos_remove), | 199 | .remove = dwc3_exynos_remove, |
| 200 | .driver = { | 200 | .driver = { |
| 201 | .name = "exynos-dwc3", | 201 | .name = "exynos-dwc3", |
| 202 | .of_match_table = of_match_ptr(exynos_dwc3_match), | 202 | .of_match_table = of_match_ptr(exynos_dwc3_match), |
diff --git a/drivers/usb/dwc3/dwc3-omap.c b/drivers/usb/dwc3/dwc3-omap.c index 900d435f41d1..afbc6e99188c 100644 --- a/drivers/usb/dwc3/dwc3-omap.c +++ b/drivers/usb/dwc3/dwc3-omap.c | |||
| @@ -441,7 +441,7 @@ MODULE_DEVICE_TABLE(of, of_dwc3_matach); | |||
| 441 | 441 | ||
| 442 | static struct platform_driver dwc3_omap_driver = { | 442 | static struct platform_driver dwc3_omap_driver = { |
| 443 | .probe = dwc3_omap_probe, | 443 | .probe = dwc3_omap_probe, |
| 444 | .remove = __devexit_p(dwc3_omap_remove), | 444 | .remove = dwc3_omap_remove, |
| 445 | .driver = { | 445 | .driver = { |
| 446 | .name = "omap-dwc3", | 446 | .name = "omap-dwc3", |
| 447 | .of_match_table = of_dwc3_matach, | 447 | .of_match_table = of_dwc3_matach, |
diff --git a/drivers/usb/dwc3/dwc3-pci.c b/drivers/usb/dwc3/dwc3-pci.c index 13962597f3fe..b3eeec7c6bc8 100644 --- a/drivers/usb/dwc3/dwc3-pci.c +++ b/drivers/usb/dwc3/dwc3-pci.c | |||
| @@ -218,7 +218,7 @@ static struct pci_driver dwc3_pci_driver = { | |||
| 218 | .name = "dwc3-pci", | 218 | .name = "dwc3-pci", |
| 219 | .id_table = dwc3_pci_id_table, | 219 | .id_table = dwc3_pci_id_table, |
| 220 | .probe = dwc3_pci_probe, | 220 | .probe = dwc3_pci_probe, |
| 221 | .remove = __devexit_p(dwc3_pci_remove), | 221 | .remove = dwc3_pci_remove, |
| 222 | }; | 222 | }; |
| 223 | 223 | ||
| 224 | MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>"); | 224 | MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>"); |
diff --git a/drivers/usb/gadget/bcm63xx_udc.c b/drivers/usb/gadget/bcm63xx_udc.c index 9ca792224cd4..b44e43641d59 100644 --- a/drivers/usb/gadget/bcm63xx_udc.c +++ b/drivers/usb/gadget/bcm63xx_udc.c | |||
| @@ -2450,7 +2450,7 @@ static int __devexit bcm63xx_udc_remove(struct platform_device *pdev) | |||
| 2450 | 2450 | ||
| 2451 | static struct platform_driver bcm63xx_udc_driver = { | 2451 | static struct platform_driver bcm63xx_udc_driver = { |
| 2452 | .probe = bcm63xx_udc_probe, | 2452 | .probe = bcm63xx_udc_probe, |
| 2453 | .remove = __devexit_p(bcm63xx_udc_remove), | 2453 | .remove = bcm63xx_udc_remove, |
| 2454 | .driver = { | 2454 | .driver = { |
| 2455 | .name = DRV_MODULE_NAME, | 2455 | .name = DRV_MODULE_NAME, |
| 2456 | .owner = THIS_MODULE, | 2456 | .owner = THIS_MODULE, |
diff --git a/drivers/usb/gadget/fsl_qe_udc.c b/drivers/usb/gadget/fsl_qe_udc.c index b09452d6f33a..21db1f71d4ce 100644 --- a/drivers/usb/gadget/fsl_qe_udc.c +++ b/drivers/usb/gadget/fsl_qe_udc.c | |||
| @@ -2735,7 +2735,7 @@ static struct platform_driver udc_driver = { | |||
| 2735 | .of_match_table = qe_udc_match, | 2735 | .of_match_table = qe_udc_match, |
| 2736 | }, | 2736 | }, |
| 2737 | .probe = qe_udc_probe, | 2737 | .probe = qe_udc_probe, |
| 2738 | .remove = __devexit_p(qe_udc_remove), | 2738 | .remove = qe_udc_remove, |
| 2739 | #ifdef CONFIG_PM | 2739 | #ifdef CONFIG_PM |
| 2740 | .suspend = qe_udc_suspend, | 2740 | .suspend = qe_udc_suspend, |
| 2741 | .resume = qe_udc_resume, | 2741 | .resume = qe_udc_resume, |
diff --git a/drivers/usb/gadget/hid.c b/drivers/usb/gadget/hid.c index 74130f6c12c0..33deed6e7945 100644 --- a/drivers/usb/gadget/hid.c +++ b/drivers/usb/gadget/hid.c | |||
| @@ -229,7 +229,7 @@ static __refdata struct usb_composite_driver hidg_driver = { | |||
| 229 | }; | 229 | }; |
| 230 | 230 | ||
| 231 | static struct platform_driver hidg_plat_driver = { | 231 | static struct platform_driver hidg_plat_driver = { |
| 232 | .remove = __devexit_p(hidg_plat_driver_remove), | 232 | .remove = hidg_plat_driver_remove, |
| 233 | .driver = { | 233 | .driver = { |
| 234 | .owner = THIS_MODULE, | 234 | .owner = THIS_MODULE, |
| 235 | .name = "hidg", | 235 | .name = "hidg", |
diff --git a/drivers/usb/gadget/lpc32xx_udc.c b/drivers/usb/gadget/lpc32xx_udc.c index d1cf1f4db16a..52ad15ce44ac 100644 --- a/drivers/usb/gadget/lpc32xx_udc.c +++ b/drivers/usb/gadget/lpc32xx_udc.c | |||
| @@ -3447,7 +3447,7 @@ MODULE_DEVICE_TABLE(of, lpc32xx_udc_of_match); | |||
| 3447 | #endif | 3447 | #endif |
| 3448 | 3448 | ||
| 3449 | static struct platform_driver lpc32xx_udc_driver = { | 3449 | static struct platform_driver lpc32xx_udc_driver = { |
| 3450 | .remove = __devexit_p(lpc32xx_udc_remove), | 3450 | .remove = lpc32xx_udc_remove, |
| 3451 | .shutdown = lpc32xx_udc_shutdown, | 3451 | .shutdown = lpc32xx_udc_shutdown, |
| 3452 | .suspend = lpc32xx_udc_suspend, | 3452 | .suspend = lpc32xx_udc_suspend, |
| 3453 | .resume = lpc32xx_udc_resume, | 3453 | .resume = lpc32xx_udc_resume, |
diff --git a/drivers/usb/gadget/net2272.c b/drivers/usb/gadget/net2272.c index c009263a47e3..26c305321c40 100644 --- a/drivers/usb/gadget/net2272.c +++ b/drivers/usb/gadget/net2272.c | |||
| @@ -2575,7 +2575,7 @@ static struct pci_driver net2272_pci_driver = { | |||
| 2575 | .id_table = pci_ids, | 2575 | .id_table = pci_ids, |
| 2576 | 2576 | ||
| 2577 | .probe = net2272_pci_probe, | 2577 | .probe = net2272_pci_probe, |
| 2578 | .remove = __devexit_p(net2272_pci_remove), | 2578 | .remove = net2272_pci_remove, |
| 2579 | }; | 2579 | }; |
| 2580 | 2580 | ||
| 2581 | static int net2272_pci_register(void) | 2581 | static int net2272_pci_register(void) |
| @@ -2678,7 +2678,7 @@ net2272_plat_remove(struct platform_device *pdev) | |||
| 2678 | 2678 | ||
| 2679 | static struct platform_driver net2272_plat_driver = { | 2679 | static struct platform_driver net2272_plat_driver = { |
| 2680 | .probe = net2272_plat_probe, | 2680 | .probe = net2272_plat_probe, |
| 2681 | .remove = __devexit_p(net2272_plat_remove), | 2681 | .remove = net2272_plat_remove, |
| 2682 | .driver = { | 2682 | .driver = { |
| 2683 | .name = driver_name, | 2683 | .name = driver_name, |
| 2684 | .owner = THIS_MODULE, | 2684 | .owner = THIS_MODULE, |
diff --git a/drivers/usb/gadget/omap_udc.c b/drivers/usb/gadget/omap_udc.c index 2a4749c3eb3f..b5605ddfbd63 100644 --- a/drivers/usb/gadget/omap_udc.c +++ b/drivers/usb/gadget/omap_udc.c | |||
| @@ -3060,7 +3060,7 @@ static int omap_udc_resume(struct platform_device *dev) | |||
| 3060 | 3060 | ||
| 3061 | static struct platform_driver udc_driver = { | 3061 | static struct platform_driver udc_driver = { |
| 3062 | .probe = omap_udc_probe, | 3062 | .probe = omap_udc_probe, |
| 3063 | .remove = __devexit_p(omap_udc_remove), | 3063 | .remove = omap_udc_remove, |
| 3064 | .suspend = omap_udc_suspend, | 3064 | .suspend = omap_udc_suspend, |
| 3065 | .resume = omap_udc_resume, | 3065 | .resume = omap_udc_resume, |
| 3066 | .driver = { | 3066 | .driver = { |
diff --git a/drivers/usb/gadget/s3c-hsotg.c b/drivers/usb/gadget/s3c-hsotg.c index 6f696ee8b817..9fd6e5fdc350 100644 --- a/drivers/usb/gadget/s3c-hsotg.c +++ b/drivers/usb/gadget/s3c-hsotg.c | |||
| @@ -3708,7 +3708,7 @@ static struct platform_driver s3c_hsotg_driver = { | |||
| 3708 | .owner = THIS_MODULE, | 3708 | .owner = THIS_MODULE, |
| 3709 | }, | 3709 | }, |
| 3710 | .probe = s3c_hsotg_probe, | 3710 | .probe = s3c_hsotg_probe, |
| 3711 | .remove = __devexit_p(s3c_hsotg_remove), | 3711 | .remove = s3c_hsotg_remove, |
| 3712 | .suspend = s3c_hsotg_suspend, | 3712 | .suspend = s3c_hsotg_suspend, |
| 3713 | .resume = s3c_hsotg_resume, | 3713 | .resume = s3c_hsotg_resume, |
| 3714 | }; | 3714 | }; |
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 | ||
| 208 | static struct platform_driver ehci_atmel_driver = { | 208 | static 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 | ||
| 221 | static struct platform_driver ehci_msm_driver = { | 221 | static 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 = { | |||
| 196 | static struct platform_driver ehci_platform_driver = { | 196 | static 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 | ||
| 275 | static struct platform_driver s5p_ehci_driver = { | 275 | static 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 | ||
| 167 | static struct platform_driver ehci_hcd_w90x900_driver = { | 167 | static 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 | ||
| 827 | module_platform_driver(of_fhci_driver); | 827 | module_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 | ||
| 342 | module_platform_driver(fsl_usb2_mph_dr_driver); | 342 | module_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 | ||
| 2857 | static struct platform_driver isp1362_driver = { | 2857 | static 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 | ||
| 433 | static struct platform_driver isp1760_plat_driver = { | 433 | static 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 | ||
| 718 | static struct platform_driver ohci_hcd_at91_driver = { | 718 | static 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 | ||
| 276 | static struct platform_driver exynos_ohci_driver = { | 276 | static 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 | ||
| 267 | static struct platform_driver ohci_hcd_jz4740_driver = { | 267 | static 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 | ||
| 233 | static struct platform_driver ohci_hcd_omap3_driver = { | 233 | static 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 = { | |||
| 214 | static struct platform_driver ohci_platform_driver = { | 214 | static 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 | ||
| 525 | static struct platform_driver ohci_hcd_s3c2410_driver = { | 525 | static 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 | ||
| 364 | static struct platform_driver ohci_hcd_tmio_driver = { | 364 | static 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 | ||
| 2533 | static struct platform_driver r8a66597_driver = { | 2533 | static 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 */ |
| 1809 | struct platform_driver sl811h_driver = { | 1809 | struct 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 | */ |
| 3213 | static struct platform_driver u132_platform_driver = { | 3213 | static 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 = { |
diff --git a/drivers/usb/musb/am35x.c b/drivers/usb/musb/am35x.c index 3baccf765418..49e8ce7ec26b 100644 --- a/drivers/usb/musb/am35x.c +++ b/drivers/usb/musb/am35x.c | |||
| @@ -629,7 +629,7 @@ static struct dev_pm_ops am35x_pm_ops = { | |||
| 629 | 629 | ||
| 630 | static struct platform_driver am35x_driver = { | 630 | static struct platform_driver am35x_driver = { |
| 631 | .probe = am35x_probe, | 631 | .probe = am35x_probe, |
| 632 | .remove = __devexit_p(am35x_remove), | 632 | .remove = am35x_remove, |
| 633 | .driver = { | 633 | .driver = { |
| 634 | .name = "musb-am35x", | 634 | .name = "musb-am35x", |
| 635 | .pm = DEV_PM_OPS, | 635 | .pm = DEV_PM_OPS, |
diff --git a/drivers/usb/musb/da8xx.c b/drivers/usb/musb/da8xx.c index 67b8ae704e9a..51ace9bf73df 100644 --- a/drivers/usb/musb/da8xx.c +++ b/drivers/usb/musb/da8xx.c | |||
| @@ -569,7 +569,7 @@ static int __devexit da8xx_remove(struct platform_device *pdev) | |||
| 569 | 569 | ||
| 570 | static struct platform_driver da8xx_driver = { | 570 | static struct platform_driver da8xx_driver = { |
| 571 | .probe = da8xx_probe, | 571 | .probe = da8xx_probe, |
| 572 | .remove = __devexit_p(da8xx_remove), | 572 | .remove = da8xx_remove, |
| 573 | .driver = { | 573 | .driver = { |
| 574 | .name = "musb-da8xx", | 574 | .name = "musb-da8xx", |
| 575 | }, | 575 | }, |
diff --git a/drivers/usb/musb/davinci.c b/drivers/usb/musb/davinci.c index b3c0a943950c..e01087b44e09 100644 --- a/drivers/usb/musb/davinci.c +++ b/drivers/usb/musb/davinci.c | |||
| @@ -601,7 +601,7 @@ static int __devexit davinci_remove(struct platform_device *pdev) | |||
| 601 | 601 | ||
| 602 | static struct platform_driver davinci_driver = { | 602 | static struct platform_driver davinci_driver = { |
| 603 | .probe = davinci_probe, | 603 | .probe = davinci_probe, |
| 604 | .remove = __devexit_p(davinci_remove), | 604 | .remove = davinci_remove, |
| 605 | .driver = { | 605 | .driver = { |
| 606 | .name = "musb-davinci", | 606 | .name = "musb-davinci", |
| 607 | }, | 607 | }, |
diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index 774d8154a286..69cfa18bb2df 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c | |||
| @@ -2288,7 +2288,7 @@ static struct platform_driver musb_driver = { | |||
| 2288 | .pm = MUSB_DEV_PM_OPS, | 2288 | .pm = MUSB_DEV_PM_OPS, |
| 2289 | }, | 2289 | }, |
| 2290 | .probe = musb_probe, | 2290 | .probe = musb_probe, |
| 2291 | .remove = __devexit_p(musb_remove), | 2291 | .remove = musb_remove, |
| 2292 | .shutdown = musb_shutdown, | 2292 | .shutdown = musb_shutdown, |
| 2293 | }; | 2293 | }; |
| 2294 | 2294 | ||
diff --git a/drivers/usb/musb/musb_dsps.c b/drivers/usb/musb/musb_dsps.c index b108473e4d5f..80e2b03965c8 100644 --- a/drivers/usb/musb/musb_dsps.c +++ b/drivers/usb/musb/musb_dsps.c | |||
| @@ -767,7 +767,7 @@ MODULE_DEVICE_TABLE(of, musb_dsps_of_match); | |||
| 767 | 767 | ||
| 768 | static struct platform_driver dsps_usbss_driver = { | 768 | static struct platform_driver dsps_usbss_driver = { |
| 769 | .probe = dsps_probe, | 769 | .probe = dsps_probe, |
| 770 | .remove = __devexit_p(dsps_remove), | 770 | .remove = dsps_remove, |
| 771 | .driver = { | 771 | .driver = { |
| 772 | .name = "musb-dsps", | 772 | .name = "musb-dsps", |
| 773 | .pm = &dsps_pm_ops, | 773 | .pm = &dsps_pm_ops, |
diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c index 32f531e7a2e6..1150b4b6a090 100644 --- a/drivers/usb/musb/omap2430.c +++ b/drivers/usb/musb/omap2430.c | |||
| @@ -674,7 +674,7 @@ MODULE_DEVICE_TABLE(of, omap2430_id_table); | |||
| 674 | 674 | ||
| 675 | static struct platform_driver omap2430_driver = { | 675 | static struct platform_driver omap2430_driver = { |
| 676 | .probe = omap2430_probe, | 676 | .probe = omap2430_probe, |
| 677 | .remove = __devexit_p(omap2430_remove), | 677 | .remove = omap2430_remove, |
| 678 | .driver = { | 678 | .driver = { |
| 679 | .name = "musb-omap2430", | 679 | .name = "musb-omap2430", |
| 680 | .pm = DEV_PM_OPS, | 680 | .pm = DEV_PM_OPS, |
diff --git a/drivers/usb/musb/tusb6010.c b/drivers/usb/musb/tusb6010.c index 812719b683d1..b816517d8cbf 100644 --- a/drivers/usb/musb/tusb6010.c +++ b/drivers/usb/musb/tusb6010.c | |||
| @@ -1227,7 +1227,7 @@ static int __devexit tusb_remove(struct platform_device *pdev) | |||
| 1227 | 1227 | ||
| 1228 | static struct platform_driver tusb_driver = { | 1228 | static struct platform_driver tusb_driver = { |
| 1229 | .probe = tusb_probe, | 1229 | .probe = tusb_probe, |
| 1230 | .remove = __devexit_p(tusb_remove), | 1230 | .remove = tusb_remove, |
| 1231 | .driver = { | 1231 | .driver = { |
| 1232 | .name = "musb-tusb", | 1232 | .name = "musb-tusb", |
| 1233 | }, | 1233 | }, |
diff --git a/drivers/usb/musb/ux500.c b/drivers/usb/musb/ux500.c index 286f1be6594a..1d815578dde5 100644 --- a/drivers/usb/musb/ux500.c +++ b/drivers/usb/musb/ux500.c | |||
| @@ -216,7 +216,7 @@ static const struct dev_pm_ops ux500_pm_ops = { | |||
| 216 | 216 | ||
| 217 | static struct platform_driver ux500_driver = { | 217 | static struct platform_driver ux500_driver = { |
| 218 | .probe = ux500_probe, | 218 | .probe = ux500_probe, |
| 219 | .remove = __devexit_p(ux500_remove), | 219 | .remove = ux500_remove, |
| 220 | .driver = { | 220 | .driver = { |
| 221 | .name = "musb-ux500", | 221 | .name = "musb-ux500", |
| 222 | .pm = DEV_PM_OPS, | 222 | .pm = DEV_PM_OPS, |
diff --git a/drivers/usb/otg/ab8500-usb.c b/drivers/usb/otg/ab8500-usb.c index ae8ad561f083..62ea0c23c455 100644 --- a/drivers/usb/otg/ab8500-usb.c +++ b/drivers/usb/otg/ab8500-usb.c | |||
| @@ -571,7 +571,7 @@ static int __devexit ab8500_usb_remove(struct platform_device *pdev) | |||
| 571 | 571 | ||
| 572 | static struct platform_driver ab8500_usb_driver = { | 572 | static struct platform_driver ab8500_usb_driver = { |
| 573 | .probe = ab8500_usb_probe, | 573 | .probe = ab8500_usb_probe, |
| 574 | .remove = __devexit_p(ab8500_usb_remove), | 574 | .remove = ab8500_usb_remove, |
| 575 | .driver = { | 575 | .driver = { |
| 576 | .name = "ab8500-usb", | 576 | .name = "ab8500-usb", |
| 577 | .owner = THIS_MODULE, | 577 | .owner = THIS_MODULE, |
diff --git a/drivers/usb/otg/fsl_otg.c b/drivers/usb/otg/fsl_otg.c index c19d1d7173a9..77dad188d2d9 100644 --- a/drivers/usb/otg/fsl_otg.c +++ b/drivers/usb/otg/fsl_otg.c | |||
| @@ -1169,7 +1169,7 @@ static int __devexit fsl_otg_remove(struct platform_device *pdev) | |||
| 1169 | 1169 | ||
| 1170 | struct platform_driver fsl_otg_driver = { | 1170 | struct platform_driver fsl_otg_driver = { |
| 1171 | .probe = fsl_otg_probe, | 1171 | .probe = fsl_otg_probe, |
| 1172 | .remove = __devexit_p(fsl_otg_remove), | 1172 | .remove = fsl_otg_remove, |
| 1173 | .driver = { | 1173 | .driver = { |
| 1174 | .name = driver_name, | 1174 | .name = driver_name, |
| 1175 | .owner = THIS_MODULE, | 1175 | .owner = THIS_MODULE, |
diff --git a/drivers/usb/otg/msm_otg.c b/drivers/usb/otg/msm_otg.c index 9f5fc906041a..eef0dd276e1b 100644 --- a/drivers/usb/otg/msm_otg.c +++ b/drivers/usb/otg/msm_otg.c | |||
| @@ -1746,7 +1746,7 @@ static const struct dev_pm_ops msm_otg_dev_pm_ops = { | |||
| 1746 | #endif | 1746 | #endif |
| 1747 | 1747 | ||
| 1748 | static struct platform_driver msm_otg_driver = { | 1748 | static struct platform_driver msm_otg_driver = { |
| 1749 | .remove = __devexit_p(msm_otg_remove), | 1749 | .remove = msm_otg_remove, |
| 1750 | .driver = { | 1750 | .driver = { |
| 1751 | .name = DRIVER_NAME, | 1751 | .name = DRIVER_NAME, |
| 1752 | .owner = THIS_MODULE, | 1752 | .owner = THIS_MODULE, |
diff --git a/drivers/usb/otg/mxs-phy.c b/drivers/usb/otg/mxs-phy.c index 9a3caeecc508..001fdde12d7a 100644 --- a/drivers/usb/otg/mxs-phy.c +++ b/drivers/usb/otg/mxs-phy.c | |||
| @@ -164,7 +164,7 @@ MODULE_DEVICE_TABLE(of, mxs_phy_dt_ids); | |||
| 164 | 164 | ||
| 165 | static struct platform_driver mxs_phy_driver = { | 165 | static struct platform_driver mxs_phy_driver = { |
| 166 | .probe = mxs_phy_probe, | 166 | .probe = mxs_phy_probe, |
| 167 | .remove = __devexit_p(mxs_phy_remove), | 167 | .remove = mxs_phy_remove, |
| 168 | .driver = { | 168 | .driver = { |
| 169 | .name = DRIVER_NAME, | 169 | .name = DRIVER_NAME, |
| 170 | .owner = THIS_MODULE, | 170 | .owner = THIS_MODULE, |
diff --git a/drivers/usb/otg/nop-usb-xceiv.c b/drivers/usb/otg/nop-usb-xceiv.c index e52e35e7adaf..0502c2405915 100644 --- a/drivers/usb/otg/nop-usb-xceiv.c +++ b/drivers/usb/otg/nop-usb-xceiv.c | |||
| @@ -156,7 +156,7 @@ static int __devexit nop_usb_xceiv_remove(struct platform_device *pdev) | |||
| 156 | 156 | ||
| 157 | static struct platform_driver nop_usb_xceiv_driver = { | 157 | static struct platform_driver nop_usb_xceiv_driver = { |
| 158 | .probe = nop_usb_xceiv_probe, | 158 | .probe = nop_usb_xceiv_probe, |
| 159 | .remove = __devexit_p(nop_usb_xceiv_remove), | 159 | .remove = nop_usb_xceiv_remove, |
| 160 | .driver = { | 160 | .driver = { |
| 161 | .name = "nop_usb_xceiv", | 161 | .name = "nop_usb_xceiv", |
| 162 | .owner = THIS_MODULE, | 162 | .owner = THIS_MODULE, |
diff --git a/drivers/usb/phy/mv_u3d_phy.c b/drivers/usb/phy/mv_u3d_phy.c index 9f1c5d3c60ec..80cf57ef5502 100644 --- a/drivers/usb/phy/mv_u3d_phy.c +++ b/drivers/usb/phy/mv_u3d_phy.c | |||
| @@ -331,7 +331,7 @@ static int __exit mv_u3d_phy_remove(struct platform_device *pdev) | |||
| 331 | 331 | ||
| 332 | static struct platform_driver mv_u3d_phy_driver = { | 332 | static struct platform_driver mv_u3d_phy_driver = { |
| 333 | .probe = mv_u3d_phy_probe, | 333 | .probe = mv_u3d_phy_probe, |
| 334 | .remove = __devexit_p(mv_u3d_phy_remove), | 334 | .remove = mv_u3d_phy_remove, |
| 335 | .driver = { | 335 | .driver = { |
| 336 | .name = "mv-u3d-phy", | 336 | .name = "mv-u3d-phy", |
| 337 | .owner = THIS_MODULE, | 337 | .owner = THIS_MODULE, |
diff --git a/drivers/usb/phy/omap-usb2.c b/drivers/usb/phy/omap-usb2.c index 15ab3d6f2e8c..f1ed872dd969 100644 --- a/drivers/usb/phy/omap-usb2.c +++ b/drivers/usb/phy/omap-usb2.c | |||
| @@ -254,7 +254,7 @@ MODULE_DEVICE_TABLE(of, omap_usb2_id_table); | |||
| 254 | 254 | ||
| 255 | static struct platform_driver omap_usb2_driver = { | 255 | static struct platform_driver omap_usb2_driver = { |
| 256 | .probe = omap_usb2_probe, | 256 | .probe = omap_usb2_probe, |
| 257 | .remove = __devexit_p(omap_usb2_remove), | 257 | .remove = omap_usb2_remove, |
| 258 | .driver = { | 258 | .driver = { |
| 259 | .name = "omap-usb2", | 259 | .name = "omap-usb2", |
| 260 | .owner = THIS_MODULE, | 260 | .owner = THIS_MODULE, |
diff --git a/drivers/usb/phy/rcar-phy.c b/drivers/usb/phy/rcar-phy.c index 792f505d630c..703a29586a7a 100644 --- a/drivers/usb/phy/rcar-phy.c +++ b/drivers/usb/phy/rcar-phy.c | |||
| @@ -210,7 +210,7 @@ static struct platform_driver rcar_usb_phy_driver = { | |||
| 210 | .name = "rcar_usb_phy", | 210 | .name = "rcar_usb_phy", |
| 211 | }, | 211 | }, |
| 212 | .probe = rcar_usb_phy_probe, | 212 | .probe = rcar_usb_phy_probe, |
| 213 | .remove = __devexit_p(rcar_usb_phy_remove), | 213 | .remove = rcar_usb_phy_remove, |
| 214 | }; | 214 | }; |
| 215 | 215 | ||
| 216 | module_platform_driver(rcar_usb_phy_driver); | 216 | module_platform_driver(rcar_usb_phy_driver); |
diff --git a/drivers/usb/renesas_usbhs/common.c b/drivers/usb/renesas_usbhs/common.c index 3bf922ab045e..2aa7c1a38ce3 100644 --- a/drivers/usb/renesas_usbhs/common.c +++ b/drivers/usb/renesas_usbhs/common.c | |||
| @@ -636,7 +636,7 @@ static struct platform_driver renesas_usbhs_driver = { | |||
| 636 | .pm = &usbhsc_pm_ops, | 636 | .pm = &usbhsc_pm_ops, |
| 637 | }, | 637 | }, |
| 638 | .probe = usbhs_probe, | 638 | .probe = usbhs_probe, |
| 639 | .remove = __devexit_p(usbhs_remove), | 639 | .remove = usbhs_remove, |
| 640 | }; | 640 | }; |
| 641 | 641 | ||
| 642 | module_platform_driver(renesas_usbhs_driver); | 642 | module_platform_driver(renesas_usbhs_driver); |
