diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-10-08 09:11:29 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-10-22 14:23:59 -0400 |
commit | cfa49b4b88fe14d2b5792f2ea7ba5b88c8cd1d15 (patch) | |
tree | 5a689a1365b7b0844421ec5a18a3a9af4d28c323 /drivers/usb/host/ohci-spear.c | |
parent | d4ae47dc5670efecd2214110caf33dfc0ff7191f (diff) |
USB: ohci: merge ohci_finish_controller_resume with ohci_resume
Merge ohci_finish_controller_resume with ohci_resume as suggested by Alan
Stern. Since ohci_finish_controller_resume no longer exists, update the
various OHCI drivers to call ohci_resume() instead. Some drivers used to set
themselves the bit HCD_FLAG_HW_ACCESSIBLE, which is now handled by
ohci_resume().
Acked-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ohci-spear.c')
-rw-r--r-- | drivers/usb/host/ohci-spear.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ohci-spear.c b/drivers/usb/host/ohci-spear.c index fc7305ee3c9c..d607be33c03c 100644 --- a/drivers/usb/host/ohci-spear.c +++ b/drivers/usb/host/ohci-spear.c | |||
@@ -231,7 +231,7 @@ static int spear_ohci_hcd_drv_resume(struct platform_device *dev) | |||
231 | ohci->next_statechange = jiffies; | 231 | ohci->next_statechange = jiffies; |
232 | 232 | ||
233 | spear_start_ohci(ohci_p); | 233 | spear_start_ohci(ohci_p); |
234 | ohci_finish_controller_resume(hcd); | 234 | ohci_resume(hcd, false); |
235 | return 0; | 235 | return 0; |
236 | } | 236 | } |
237 | #endif | 237 | #endif |