summaryrefslogtreecommitdiff
path: root/drivers/usb
diff options
context:
space:
mode:
authorFelipe Balbi <felipe.balbi@nokia.com>2008-11-17 07:08:16 (GMT)
committerGreg Kroah-Hartman <gregkh@kvm.kroah.org>2008-11-20 06:01:34 (GMT)
commitaa5cbbecd903e5692b64f871c385ece1c5508eac (patch)
tree4ed5e7dda3b791745f54d2de761193dc8f1c38ef /drivers/usb
parentb09bc6cbae4dd3a2d35722668ef2c502a7b8b093 (diff)
downloadlinux-fsl-qoriq-aa5cbbecd903e5692b64f871c385ece1c5508eac.tar.xz
usb: musb: fix bug in musb_schedule
This bug was introduced recently. Fix it before bigger problems appear. Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com> Cc: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/musb/musb_host.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c
index e45e70b..cc64462 100644
--- a/drivers/usb/musb/musb_host.c
+++ b/drivers/usb/musb/musb_host.c
@@ -1757,7 +1757,7 @@ static int musb_schedule(
}
}
/* use bulk reserved ep1 if no other ep is free */
- if (best_end > 0 && qh->type == USB_ENDPOINT_XFER_BULK) {
+ if (best_end < 0 && qh->type == USB_ENDPOINT_XFER_BULK) {
hw_ep = musb->bulk_ep;
if (is_in)
head = &musb->in_bulk;