diff options
| -rw-r--r-- | drivers/usb/input/keyspan_remote.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/input/keyspan_remote.c b/drivers/usb/input/keyspan_remote.c index 4723b310f277..a90359551575 100644 --- a/drivers/usb/input/keyspan_remote.c +++ b/drivers/usb/input/keyspan_remote.c | |||
| @@ -420,8 +420,7 @@ static struct usb_endpoint_descriptor *keyspan_get_in_endpoint(struct usb_host_i | |||
| 420 | for (i = 0; i < iface->desc.bNumEndpoints; ++i) { | 420 | for (i = 0; i < iface->desc.bNumEndpoints; ++i) { |
| 421 | endpoint = &iface->endpoint[i].desc; | 421 | endpoint = &iface->endpoint[i].desc; |
| 422 | 422 | ||
| 423 | if ((endpoint->bEndpointAddress & USB_DIR_IN) && | 423 | if (usb_endpoint_is_int_in(endpoint)) { |
| 424 | ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) == USB_ENDPOINT_XFER_INT)) { | ||
| 425 | /* we found our interrupt in endpoint */ | 424 | /* we found our interrupt in endpoint */ |
| 426 | return endpoint; | 425 | return endpoint; |
| 427 | } | 426 | } |
