mirror of
https://github.com/torvalds/linux.git
synced 2024-11-04 11:04:38 +00:00
[media] go7007: Fix 2250 urb type
commit a846d8fce9e8be30046be3c512982bd0345e7015 The 2250 board uses bulk endpoint for interrupt handling, and should use a bulk urb instead of an int urb. Signed-off-by: Pete Eberlein <pete@sensoray.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
6d00c9aa2b
commit
7e5219d18e
@ -1054,7 +1054,13 @@ static int go7007_usb_probe(struct usb_interface *intf,
|
||||
else
|
||||
go->hpi_ops = &go7007_usb_onboard_hpi_ops;
|
||||
go->hpi_context = usb;
|
||||
usb_fill_int_urb(usb->intr_urb, usb->usbdev,
|
||||
if (go->board_id == GO7007_BOARDID_SENSORAY_2250)
|
||||
usb_fill_bulk_urb(usb->intr_urb, usb->usbdev,
|
||||
usb_rcvbulkpipe(usb->usbdev, 4),
|
||||
usb->intr_urb->transfer_buffer, 2*sizeof(u16),
|
||||
go7007_usb_readinterrupt_complete, go);
|
||||
else
|
||||
usb_fill_int_urb(usb->intr_urb, usb->usbdev,
|
||||
usb_rcvintpipe(usb->usbdev, 4),
|
||||
usb->intr_urb->transfer_buffer, 2*sizeof(u16),
|
||||
go7007_usb_readinterrupt_complete, go, 8);
|
||||
|
Loading…
Reference in New Issue
Block a user