aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ehci-ppc-of.c
diff options
context:
space:
mode:
authorRoger Quadros <rogerq@ti.com>2013-07-22 08:04:50 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-07-25 15:01:12 -0400
commitaaf6b52d50f85ed792c9c8987f5169f3dce2adea (patch)
treeda173e92e0c85a039510092e31ff915af1331585 /drivers/usb/host/ehci-ppc-of.c
parentc4b51a431561f0bacc1740aa27f080bf95c4d6c7 (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-ppc-of.c')
-rw-r--r--drivers/usb/host/ehci-ppc-of.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/drivers/usb/host/ehci-ppc-of.c b/drivers/usb/host/ehci-ppc-of.c
index 86da09c0f8d0..932293fa32de 100644
--- a/drivers/usb/host/ehci-ppc-of.c
+++ b/drivers/usb/host/ehci-ppc-of.c
@@ -215,15 +215,6 @@ static int ehci_hcd_ppc_of_remove(struct platform_device *op)
215} 215}
216 216
217 217
218static void ehci_hcd_ppc_of_shutdown(struct platform_device *op)
219{
220 struct usb_hcd *hcd = platform_get_drvdata(op);
221
222 if (hcd->driver->shutdown)
223 hcd->driver->shutdown(hcd);
224}
225
226
227static const struct of_device_id ehci_hcd_ppc_of_match[] = { 218static const struct of_device_id ehci_hcd_ppc_of_match[] = {
228 { 219 {
229 .compatible = "usb-ehci", 220 .compatible = "usb-ehci",
@@ -236,7 +227,7 @@ MODULE_DEVICE_TABLE(of, ehci_hcd_ppc_of_match);
236static struct platform_driver ehci_hcd_ppc_of_driver = { 227static struct platform_driver ehci_hcd_ppc_of_driver = {
237 .probe = ehci_hcd_ppc_of_probe, 228 .probe = ehci_hcd_ppc_of_probe,
238 .remove = ehci_hcd_ppc_of_remove, 229 .remove = ehci_hcd_ppc_of_remove,
239 .shutdown = ehci_hcd_ppc_of_shutdown, 230 .shutdown = usb_hcd_platform_shutdown,
240 .driver = { 231 .driver = {
241 .name = "ppc-of-ehci", 232 .name = "ppc-of-ehci",
242 .owner = THIS_MODULE, 233 .owner = THIS_MODULE,