1. NAME

usb_hcd_giveback_urb - return URB from HCD to device driver

2. SYNOPSIS

void usb_hcd_giveback_urb(struct usb_hcd *  hcd , struct urb *  urb , int  status );

3. ARGUMENTS

hcd
    host controller returning the URB

urb
    urb being returned to the USB device driver.

status
    completion status code for the URB.

4. CONTEXT

in_interrupt

5. DESCRIPTION

This hands the URB from HCD to its USB device driver, using its completion function. The HCD has freed all per-urb resources (and is done using urb->hcpriv). It also released all HCD locks; the device driver wonAqt cause problems if it frees, modifies, or resubmits this URB.

If urb was unlinked, the value of status will be overridden by urb->unlinked. Erroneous short transfers are detected in case the HCD hasnAqt checked for them.

6. COPYRIGHT