Commit 581a2739 authored by Jiri Slaby's avatar Jiri Slaby Committed by Jiri Kosina

HID: usbhid, use usb_endpoint_xfer_int

Use usb_endpoint_xfer_int() instead of direct use of constants.
Signed-off-by: default avatarJiri Slaby <jirislaby@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 0ed94b33
...@@ -805,7 +805,7 @@ static int usbhid_start(struct hid_device *hid) ...@@ -805,7 +805,7 @@ static int usbhid_start(struct hid_device *hid)
int interval; int interval;
endpoint = &interface->endpoint[n].desc; endpoint = &interface->endpoint[n].desc;
if ((endpoint->bmAttributes & 3) != 3) /* Not an interrupt endpoint */ if (!usb_endpoint_xfer_int(endpoint))
continue; continue;
interval = endpoint->bInterval; interval = endpoint->bInterval;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment