From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Mon, 4 Oct 2010 01:36:27 +0200 Subject: [U-Boot] [PATCH 1/2] USB: Make non-bulk delay longer in OHCI In-Reply-To: <1284947846-12811-1-git-send-email-marek.vasut@gmail.com> References: <1284947846-12811-1-git-send-email-marek.vasut@gmail.com> Message-ID: <201010040136.27940.marek.vasut@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Dne Po 20. z??? 2010 03:57:25 Marek Vasut napsal(a): > This fixes TIMEOUT with my Kingston 32GB USB3.0 flashdrive, which I > experienced on my PXA270 (USB 1.1) Vpac270 board. CC Remy > > Signed-off-by: Marek Vasut > --- > drivers/usb/host/ohci-hcd.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c > index 3f76c4e..d246978 100644 > --- a/drivers/usb/host/ohci-hcd.c > +++ b/drivers/usb/host/ohci-hcd.c > @@ -1529,7 +1529,7 @@ int submit_common_msg(struct usb_device *dev, > unsigned long pipe, void *buffer, if (usb_pipebulk(pipe)) > timeout = BULK_TO; > else > - timeout = 100; > + timeout = 1000; > > /* wait for it to complete */ > for (;;) {