]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
HID: fix compilation of hidbp drivers without usbhid
authorJiri Kosina <jkosina@suse.cz>
Mon, 17 Dec 2007 15:11:27 +0000 (16:11 +0100)
committerJiri Kosina <jkosina@suse.cz>
Mon, 28 Jan 2008 13:51:22 +0000 (14:51 +0100)
We can use the blacklist only if usbhid code is compiled.

Reported-by: jurriaan <thunder7@xs4all.nl>
Cc: Pascal Terjan <pterjan@mandriva.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/usbhid/usbkbd.c
drivers/hid/usbhid/usbmouse.c

index a31ccb4fca0938e86dbbae48d8bda09b30b9147a..5d9dbb47e4a84f9a35fcf4cd419636fb653f4913 100644 (file)
@@ -235,11 +235,13 @@ static int usb_kbd_probe(struct usb_interface *iface,
        if (!usb_endpoint_is_int_in(endpoint))
                return -ENODEV;
 
+#ifdef CONFIG_USB_HID
        if (usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor),
                                le16_to_cpu(dev->descriptor.idProduct))
                        & HID_QUIRK_IGNORE) {
                return -ENODEV;
        }
+#endif
 
        pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
        maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));
index 8ff1b3fe8d6d823405c0a1f60d1f2c96184c5204..df0d96d989de7b92300877269158f73fb40e5241 100644 (file)
@@ -131,11 +131,13 @@ static int usb_mouse_probe(struct usb_interface *intf, const struct usb_device_i
        if (!usb_endpoint_is_int_in(endpoint))
                return -ENODEV;
 
+#ifdef CONFIG_USB_HID
        if (usbhid_lookup_quirk(le16_to_cpu(dev->descriptor.idVendor),
                                le16_to_cpu(dev->descriptor.idProduct))
                        & (HID_QUIRK_IGNORE|HID_QUIRK_IGNORE_MOUSE)) {
                return -ENODEV;
        }
+#endif
 
        pipe = usb_rcvintpipe(dev, endpoint->bEndpointAddress);
        maxp = usb_maxpacket(dev, pipe, usb_pipeout(pipe));