diff mbox

[U-Boot,1/1] usb: Some EHCI chipsets are slow to respond.

Message ID 0f5372e402f4cad2345a7b7dd08bd81173852668.1308066852.git.u-boot@lakedaemon.net
State Accepted
Delegated to: Marek Vasut
Headers show

Commit Message

u-boot@lakedaemon.net June 14, 2011, 3:58 p.m. UTC
From: Jason Cooper <u-boot@lakedaemon.net>

This fixes 'EHCI timed out on TD...' on the dreamplug board.

Signed-off-by: Jason Cooper <u-boot@lakedaemon.net>
---
 include/usb.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff mbox

Patch

diff --git a/include/usb.h b/include/usb.h
index 53603a5..168e2b2 100644
--- a/include/usb.h
+++ b/include/usb.h
@@ -46,7 +46,7 @@ 
  * This is the timeout to allow for submitting an urb in ms. We allow more
  * time for a BULK device to react - some are slow.
  */
-#define USB_TIMEOUT_MS(pipe) (usb_pipebulk(pipe) ? 5000 : 100)
+#define USB_TIMEOUT_MS(pipe) (usb_pipebulk(pipe) ? 5000 : 500)
 
 /* device request (setup) */
 struct devrequest {