From 2176c2b4e42878943fb98bc2add2c9c94aef8fb2 Mon Sep 17 00:00:00 2001 From: Hyungwon Hwang Date: Fri, 20 Jun 2014 20:00:59 +0900 Subject: usb: s5p-ehci: fix the status when the device is being resumed The device is powered down when it is suspended. So the status must be set as hibernated when it is being resumed. Change-Id: Ie67613f0e5e19f4412e46c25a9ea082c31beb0e2 Signed-off-by: Hyungwon Hwang --- drivers/usb/host/ehci-s5p.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/host/ehci-s5p.c b/drivers/usb/host/ehci-s5p.c index cd1282443c8..8b14ac5d786 100644 --- a/drivers/usb/host/ehci-s5p.c +++ b/drivers/usb/host/ehci-s5p.c @@ -424,7 +424,7 @@ static int s5p_ehci_resume(struct device *dev) /* DMA burst Enable */ writel(EHCI_INSNREG00_ENABLE_DMA_BURST, EHCI_INSNREG00(hcd->regs)); - ehci_resume(hcd, false); + ehci_resume(hcd, true); return 0; } #else -- cgit v1.2.3