summaryrefslogtreecommitdiff
path: root/drivers/usb/chipidea/host.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-09-15 10:38:30 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-09-15 10:38:30 +0200
commitf21ca2c9999872da113a1fc70abb527129b72af3 (patch)
tree5a42f1b45e63c7baeb46a10f31576ff8df2f7cf5 /drivers/usb/chipidea/host.c
parent81522637485dd6ec9de4279c9714d58f884b6091 (diff)
parente74e83724808b72173b557bd8008202109fb6091 (diff)
Merge tag 'usb-ci-v4.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb into usb-testing
Peter writes: Most of them are refine patches, only new feature is disable io watchdog for chipidea platform.
Diffstat (limited to 'drivers/usb/chipidea/host.c')
-rw-r--r--drivers/usb/chipidea/host.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/chipidea/host.c b/drivers/usb/chipidea/host.c
index 053bac9d983c..96ae69502c86 100644
--- a/drivers/usb/chipidea/host.c
+++ b/drivers/usb/chipidea/host.c
@@ -81,12 +81,15 @@ static int ehci_ci_reset(struct usb_hcd *hcd)
{
struct device *dev = hcd->self.controller;
struct ci_hdrc *ci = dev_get_drvdata(dev);
+ struct ehci_hcd *ehci = hcd_to_ehci(hcd);
int ret;
ret = ehci_setup(hcd);
if (ret)
return ret;
+ ehci->need_io_watchdog = 0;
+
ci_platform_configure(ci);
return ret;