Merge "libusbhost: Fix IOCTL call during usb_request_cancel" into lmp-dev
This commit is contained in:
commit
0be19a53cf
1 changed files with 1 additions and 1 deletions
|
@ -695,6 +695,6 @@ struct usb_request *usb_request_wait(struct usb_device *dev)
|
|||
int usb_request_cancel(struct usb_request *req)
|
||||
{
|
||||
struct usbdevfs_urb *urb = ((struct usbdevfs_urb*)req->private_data);
|
||||
return ioctl(req->dev->fd, USBDEVFS_DISCARDURB, &urb);
|
||||
return ioctl(req->dev->fd, USBDEVFS_DISCARDURB, urb);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue