diff options
| author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:21:08 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 16:27:16 -0500 |
| commit | 7690417db5085f0de03aa70b8ca01b0118e8a1b4 (patch) | |
| tree | 794777a784aac86d9e30627092429d754b9070f4 /drivers/usb/chipidea | |
| parent | 2bd6a021e887c675116ff8cdacc3af49999a2224 (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/chipidea')
| -rw-r--r-- | drivers/usb/chipidea/ci13xxx_imx.c | 2 | ||||
| -rw-r--r-- | drivers/usb/chipidea/ci13xxx_msm.c | 2 | ||||
| -rw-r--r-- | drivers/usb/chipidea/ci13xxx_pci.c | 2 | ||||
| -rw-r--r-- | drivers/usb/chipidea/core.c | 2 | ||||
| -rw-r--r-- | drivers/usb/chipidea/usbmisc_imx6q.c | 2 |
5 files changed, 5 insertions, 5 deletions
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, |
