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>
This commit is contained in:
Marek Vasut 2010-09-20 03:57:25 +02:00 committed by Remy Bohmer
parent 076f1be8e1
commit f2443d10ff
1 changed files with 1 additions and 1 deletions

View File

@ -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 (;;) {