diff options
Diffstat (limited to 'drivers/hid/usbhid/usbkbd.c')
-rw-r--r-- | drivers/hid/usbhid/usbkbd.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/hid/usbhid/usbkbd.c b/drivers/hid/usbhid/usbkbd.c index 775a1ef28a29..5d9dbb47e4a8 100644 --- a/drivers/hid/usbhid/usbkbd.c +++ b/drivers/hid/usbhid/usbkbd.c | |||
@@ -235,6 +235,14 @@ static int usb_kbd_probe(struct usb_interface *iface, | |||
235 | if (!usb_endpoint_is_int_in(endpoint)) | 235 | if (!usb_endpoint_is_int_in(endpoint)) |
236 | return -ENODEV; | 236 | return -ENODEV; |
237 | 237 | ||
238 | #ifdef CONFIG_USB_HID | ||
239 | if (usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor), | ||
240 | le16_to_cpu(dev->descriptor.idProduct)) | ||
241 | & HID_QUIRK_IGNORE) { | ||
242 | return -ENODEV; | ||
243 | } | ||
244 | #endif | ||
245 | |||
238 | pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress); | 246 | pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress); |
239 | maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe)); | 247 | maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe)); |
240 | 248 | ||