aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ohci-tmio.c
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/ohci-tmio.c
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/ohci-tmio.c')
-rw-r--r--drivers/usb/host/ohci-tmio.c2
1 files changed, 1 insertions, 1 deletions
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,