summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Paluch <bryanpaluch@gmail.com>2016-10-17 08:54:46 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-11-10 16:38:50 +0100
commitb9aa0a7290f53bf2158e3e5b9a306f1006f3cc91 (patch)
tree582cc05618a672d014a0c406a2ab1064b76405f3
parent241208e7b721ffb8b6b44fd8446c2bf5fb55aa0e (diff)
usb: increase ohci watchdog delay to 275 msec
commit ed6d6f8f42d7302f6f9b6245f34927ec20d26c12 upstream. Increase ohci watchout delay to 275 ms. Previous delay was 250 ms with 20 ms of slack, after removing slack time some ohci controllers don't respond in time. Logs from systems with controllers that have the issue would show "HcDoneHead not written back; disabled" Signed-off-by: Bryan Paluch <bryanpaluch@gmail.com> Acked-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/host/ohci-hcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c
index 1700908b84ef..86612ac3fda2 100644
--- a/drivers/usb/host/ohci-hcd.c
+++ b/drivers/usb/host/ohci-hcd.c
@@ -72,7 +72,7 @@
static const char hcd_name [] = "ohci_hcd";
#define STATECHANGE_DELAY msecs_to_jiffies(300)
-#define IO_WATCHDOG_DELAY msecs_to_jiffies(250)
+#define IO_WATCHDOG_DELAY msecs_to_jiffies(275)
#include "ohci.h"
#include "pci-quirks.h"