aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ohci-q.c
diff options
context:
space:
mode:
authorAlan Stern <stern@rowland.harvard.edu>2007-08-21 15:40:36 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2007-10-12 17:55:19 -0400
commiteb23105462304fd35571fd0cab1de7aec79a9ec5 (patch)
tree3579e74b3f1a6e68d42de01c122d206447454d4b /drivers/usb/host/ohci-q.c
parentb0d9efba3ec53468984aecef8eeaf079089f2e5a (diff)
USB: add urb->unlinked field
This patch (as970) adds a new urb->unlinked field, which is used to store the status of unlinked URBs since we can't use urb->status for that purpose any more. To help simplify the HCDs, usbcore will check urb->unlinked before calling the completion handler; if the value is set it will automatically override the status reported by the HCD. Signed-off-by: Alan Stern <stern@rowland.harvard.edu> CC: David Brownell <david-b@pacbell.net> CC: Olav Kongas <ok@artecdesign.ee> CC: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> CC: Tony Olech <tony.olech@elandigitalsystems.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/ohci-q.c')
-rw-r--r--drivers/usb/host/ohci-q.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/usb/host/ohci-q.c b/drivers/usb/host/ohci-q.c
index 8aad6199cdcc..3c793fad178d 100644
--- a/drivers/usb/host/ohci-q.c
+++ b/drivers/usb/host/ohci-q.c
@@ -758,8 +758,7 @@ static void td_done (struct ohci_hcd *ohci, struct urb *urb, struct td *td)
758 cc = TD_CC_NOERROR; 758 cc = TD_CC_NOERROR;
759 if (cc != TD_CC_NOERROR && cc < 0x0E) { 759 if (cc != TD_CC_NOERROR && cc < 0x0E) {
760 spin_lock (&urb->lock); 760 spin_lock (&urb->lock);
761 if (urb->status == -EINPROGRESS) 761 urb->status = cc_to_error[cc];
762 urb->status = cc_to_error [cc];
763 spin_unlock (&urb->lock); 762 spin_unlock (&urb->lock);
764 } 763 }
765 764
@@ -972,7 +971,7 @@ rescan_this:
972 urb = td->urb; 971 urb = td->urb;
973 urb_priv = td->urb->hcpriv; 972 urb_priv = td->urb->hcpriv;
974 973
975 if (urb->status == -EINPROGRESS) { 974 if (!urb->unlinked) {
976 prev = &td->hwNextTD; 975 prev = &td->hwNextTD;
977 continue; 976 continue;
978 } 977 }