diff options
author | Alan Stern <stern@rowland.harvard.edu> | 2007-08-21 15:40:36 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-10-12 17:55:19 -0400 |
commit | eb23105462304fd35571fd0cab1de7aec79a9ec5 (patch) | |
tree | 3579e74b3f1a6e68d42de01c122d206447454d4b /drivers/usb/host/sl811-hcd.c | |
parent | b0d9efba3ec53468984aecef8eeaf079089f2e5a (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/sl811-hcd.c')
-rw-r--r-- | drivers/usb/host/sl811-hcd.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/usb/host/sl811-hcd.c b/drivers/usb/host/sl811-hcd.c index e90953a9c9fb..f0fa94148d9d 100644 --- a/drivers/usb/host/sl811-hcd.c +++ b/drivers/usb/host/sl811-hcd.c | |||
@@ -436,8 +436,7 @@ static void finish_request( | |||
436 | ep->nextpid = USB_PID_SETUP; | 436 | ep->nextpid = USB_PID_SETUP; |
437 | 437 | ||
438 | spin_lock(&urb->lock); | 438 | spin_lock(&urb->lock); |
439 | if (urb->status == -EINPROGRESS) | 439 | urb->status = status; |
440 | urb->status = status; | ||
441 | spin_unlock(&urb->lock); | 440 | spin_unlock(&urb->lock); |
442 | 441 | ||
443 | usb_hcd_unlink_urb_from_ep(sl811_to_hcd(sl811), urb); | 442 | usb_hcd_unlink_urb_from_ep(sl811_to_hcd(sl811), urb); |
@@ -598,7 +597,7 @@ done(struct sl811 *sl811, struct sl811h_ep *ep, u8 bank) | |||
598 | bank, status, ep, urbstat); | 597 | bank, status, ep, urbstat); |
599 | } | 598 | } |
600 | 599 | ||
601 | if (urb && (urbstat != -EINPROGRESS || urb->status != -EINPROGRESS)) | 600 | if (urb && (urbstat != -EINPROGRESS || urb->unlinked)) |
602 | finish_request(sl811, ep, urb, urbstat); | 601 | finish_request(sl811, ep, urb, urbstat); |
603 | } | 602 | } |
604 | 603 | ||