diff options
author | Roger Quadros <rogerq@ti.com> | 2013-07-22 08:04:50 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-25 15:01:12 -0400 |
commit | aaf6b52d50f85ed792c9c8987f5169f3dce2adea (patch) | |
tree | da173e92e0c85a039510092e31ff915af1331585 /drivers/usb/host/ehci-omap.c | |
parent | c4b51a431561f0bacc1740aa27f080bf95c4d6c7 (diff) |
USB: host: Use usb_hcd_platform_shutdown() wherever possible
Most HCD drivers are doing the same thing in their ".shutdown" callback
so it makes sense to use the generic usb_hcd_platform_shutdown()
handler there.
Signed-off-by: Roger Quadros <rogerq@ti.com>
Reviewed-by: Felipe Balbi <balbi@ti.com>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci-omap.c')
-rw-r--r-- | drivers/usb/host/ehci-omap.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/drivers/usb/host/ehci-omap.c b/drivers/usb/host/ehci-omap.c index 9bd7dfe3315b..4384d07115d1 100644 --- a/drivers/usb/host/ehci-omap.c +++ b/drivers/usb/host/ehci-omap.c | |||
@@ -278,14 +278,6 @@ static int ehci_hcd_omap_remove(struct platform_device *pdev) | |||
278 | return 0; | 278 | return 0; |
279 | } | 279 | } |
280 | 280 | ||
281 | static void ehci_hcd_omap_shutdown(struct platform_device *pdev) | ||
282 | { | ||
283 | struct usb_hcd *hcd = dev_get_drvdata(&pdev->dev); | ||
284 | |||
285 | if (hcd->driver->shutdown) | ||
286 | hcd->driver->shutdown(hcd); | ||
287 | } | ||
288 | |||
289 | static const struct of_device_id omap_ehci_dt_ids[] = { | 281 | static const struct of_device_id omap_ehci_dt_ids[] = { |
290 | { .compatible = "ti,ehci-omap" }, | 282 | { .compatible = "ti,ehci-omap" }, |
291 | { } | 283 | { } |
@@ -296,7 +288,7 @@ MODULE_DEVICE_TABLE(of, omap_ehci_dt_ids); | |||
296 | static struct platform_driver ehci_hcd_omap_driver = { | 288 | static struct platform_driver ehci_hcd_omap_driver = { |
297 | .probe = ehci_hcd_omap_probe, | 289 | .probe = ehci_hcd_omap_probe, |
298 | .remove = ehci_hcd_omap_remove, | 290 | .remove = ehci_hcd_omap_remove, |
299 | .shutdown = ehci_hcd_omap_shutdown, | 291 | .shutdown = usb_hcd_platform_shutdown, |
300 | /*.suspend = ehci_hcd_omap_suspend, */ | 292 | /*.suspend = ehci_hcd_omap_suspend, */ |
301 | /*.resume = ehci_hcd_omap_resume, */ | 293 | /*.resume = ehci_hcd_omap_resume, */ |
302 | .driver = { | 294 | .driver = { |