aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/usb/musb/musb_host.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c
index b47ca948bcf4..e32323938e98 100644
--- a/drivers/usb/musb/musb_host.c
+++ b/drivers/usb/musb/musb_host.c
@@ -432,7 +432,7 @@ musb_advance_schedule(struct musb *musb, struct urb *urb,
432 else 432 else
433 qh = musb_giveback(qh, urb, urb->status); 433 qh = musb_giveback(qh, urb, urb->status);
434 434
435 if (qh && qh->is_ready && !list_empty(&qh->hep->urb_list)) { 435 if (qh != NULL && qh->is_ready) {
436 DBG(4, "... next ep%d %cX urb %p\n", 436 DBG(4, "... next ep%d %cX urb %p\n",
437 hw_ep->epnum, is_in ? 'R' : 'T', 437 hw_ep->epnum, is_in ? 'R' : 'T',
438 next_urb(qh)); 438 next_urb(qh));
@@ -2038,9 +2038,9 @@ static int musb_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
2038 goto done; 2038 goto done;
2039 2039
2040 /* Any URB not actively programmed into endpoint hardware can be 2040 /* Any URB not actively programmed into endpoint hardware can be
2041 * immediately given back. Such an URB must be at the head of its 2041 * immediately given back; that's any URB not at the head of an
2042 * endpoint queue, unless someday we get real DMA queues. And even 2042 * endpoint queue, unless someday we get real DMA queues. And even
2043 * then, it might not be known to the hardware... 2043 * if it's at the head, it might not be known to the hardware...
2044 * 2044 *
2045 * Otherwise abort current transfer, pending dma, etc.; urb->status 2045 * Otherwise abort current transfer, pending dma, etc.; urb->status
2046 * has already been updated. This is a synchronous abort; it'd be 2046 * has already been updated. This is a synchronous abort; it'd be
@@ -2079,6 +2079,15 @@ static int musb_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
2079 qh->is_ready = 0; 2079 qh->is_ready = 0;
2080 __musb_giveback(musb, urb, 0); 2080 __musb_giveback(musb, urb, 0);
2081 qh->is_ready = ready; 2081 qh->is_ready = ready;
2082
2083 /* If nothing else (usually musb_giveback) is using it
2084 * and its URB list has emptied, recycle this qh.
2085 */
2086 if (ready && list_empty(&qh->hep->urb_list)) {
2087 qh->hep->hcpriv = NULL;
2088 list_del(&qh->ring);
2089 kfree(qh);
2090 }
2082 } else 2091 } else
2083 ret = musb_cleanup_urb(urb, qh, urb->pipe & USB_DIR_IN); 2092 ret = musb_cleanup_urb(urb, qh, urb->pipe & USB_DIR_IN);
2084done: 2093done: