diff options
| author | Marek Vasut <marek.vasut@gmail.com> | 2010-09-20 03:57:25 +0200 | 
|---|---|---|
| committer | Remy Bohmer <linux@bohmer.net> | 2010-10-13 12:07:58 +0200 | 
| commit | f2443d10ff3d4b0e3c3eb68ce43d7f26468a1b00 (patch) | |
| tree | e197eb673fc096a5dcd2afc40d92894e9ac69098 | |
| parent | 076f1be8e1c1a1ea4760fc4ac7cac68bc28fc80d (diff) | |
| download | olio-uboot-2014.01-f2443d10ff3d4b0e3c3eb68ce43d7f26468a1b00.tar.xz olio-uboot-2014.01-f2443d10ff3d4b0e3c3eb68ce43d7f26468a1b00.zip | |
USB: Make non-bulk delay longer in OHCI
This fixes TIMEOUT with my Kingston 32GB USB3.0 flashdrive, which I experienced
on my PXA270 (USB 1.1) Vpac270 board.
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
| -rw-r--r-- | 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 3f76c4e9f..d24697896 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 (;;) { |