]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
musb-new: Fix interrupt transfers not working
authorHans de Goede <hdegoede@redhat.com>
Sun, 11 Jan 2015 19:34:50 +0000 (20:34 +0100)
committerMarek Vasut <marex@denx.de>
Sun, 18 Jan 2015 11:31:36 +0000 (12:31 +0100)
For bulk and ctrl transfers common/usb.c sets udev->status = USB_ST_NOT_PROC,
but it does not do so for interrupt transfers.

musb_uboot.c: submit_urb() however was waiting for USB_ST_NOT_PROC to become 0,
and thus without anyone setting USB_ST_NOT_PROC would exit immediately for
interrupt urbs, returning the urb status of EINPROGRESS as error.

This commit fixes this, thereby also making usb_kbd.c work together with
musb_new and CONFIG_SYS_USB_EVENT_POLL.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/usb/musb-new/musb_uboot.c

index f8a0346f36f8a4a8fbf8a8e207ba6a0a05c69704..28500bf1578bf36329f73f12123a38e53bacc0df 100644 (file)
@@ -74,7 +74,7 @@ static int submit_urb(struct usb_hcd *hcd, struct urb *urb)
                if (ctrlc())
                        return -EIO;
                host->isr(0, host);
-       } while ((urb->dev->status & USB_ST_NOT_PROC) &&
+       } while (urb->status == -EINPROGRESS &&
                 get_timer(0) < timeout);
 
        return urb->status;