diff options
Diffstat (limited to 'drivers/hid/usbhid/usbmouse.c')
-rw-r--r-- | drivers/hid/usbhid/usbmouse.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/hid/usbhid/usbmouse.c b/drivers/hid/usbhid/usbmouse.c index 8ff1b3fe8d6d..df0d96d989de 100644 --- a/drivers/hid/usbhid/usbmouse.c +++ b/drivers/hid/usbhid/usbmouse.c | |||
@@ -131,11 +131,13 @@ static int usb_mouse_probe(struct usb_interface *intf, const struct usb_device_i | |||
131 | if (!usb_endpoint_is_int_in(endpoint)) | 131 | if (!usb_endpoint_is_int_in(endpoint)) |
132 | return -ENODEV; | 132 | return -ENODEV; |
133 | 133 | ||
134 | #ifdef CONFIG_USB_HID | ||
134 | if (usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor), | 135 | if (usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor), |
135 | le16_to_cpu(dev->descriptor.idProduct)) | 136 | le16_to_cpu(dev->descriptor.idProduct)) |
136 | & (HID_QUIRK_IGNORE|HID_QUIRK_IGNORE_MOUSE)) { | 137 | & (HID_QUIRK_IGNORE|HID_QUIRK_IGNORE_MOUSE)) { |
137 | return -ENODEV; | 138 | return -ENODEV; |
138 | } | 139 | } |
140 | #endif | ||
139 | 141 | ||
140 | pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress); | 142 | pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress); |
141 | maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe)); | 143 | maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe)); |