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>
This commit is contained in:
Florian Fainelli
2012-10-08 15:11:29 +02:00
committed by Greg Kroah-Hartman
parent d4ae47dc56
commit cfa49b4b88
11 changed files with 48 additions and 57 deletions

View File

@@ -203,7 +203,7 @@ static int ohci_platform_resume(struct device *dev)
return err;
}
ohci_finish_controller_resume(hcd);
ohci_resume(hcd, false);
return 0;
}