The patch titled input: HID: add CIDC USB device to HID blacklist has been added to the -mm tree. Its filename is input-hid-add-cidc-usb-device-to-hid-blacklist.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: input: HID: add CIDC USB device to HID blacklist From: Zheng XiaoJun <zhengxiaojun@xxxxxxxxxxx> Add CIDC USB device to HID blacklist since it is actually a USB token and has its own driver. Signed-off-by: Zheng XiaoJun <zhengxiaojun@xxxxxxxxxxx> Cc: Dmitry Torokhov <dtor@xxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/usb/input/hid-core.c | 4 ++++ 1 files changed, 4 insertions(+) diff -puN drivers/usb/input/hid-core.c~input-hid-add-cidc-usb-device-to-hid-blacklist drivers/usb/input/hid-core.c --- a/drivers/usb/input/hid-core.c~input-hid-add-cidc-usb-device-to-hid-blacklist +++ a/drivers/usb/input/hid-core.c @@ -965,6 +965,8 @@ static const struct hid_blacklist { { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_USB_RECEIVER, HID_QUIRK_BAD_RELATIVE_KEYS }, + { USB_VENDOR_ID_CIDC, 0x0103, HID_QUIRK_IGNORE }, + { 0, 0 } }; @@ -1015,6 +1017,8 @@ static void hid_free_buffers(struct usb_ usb_buffer_free(dev, usbhid->bufsize, usbhid->ctrlbuf, usbhid->ctrlbuf_dma); } +#define USB_VENDOR_ID_CIDC 0x1677 + /* * Cherry Cymotion keyboard have an invalid HID report descriptor, * that needs fixing before we can parse it. _ Patches currently in -mm which might be from zhengxiaojun@xxxxxxxxxxx are input-hid-add-cidc-usb-device-to-hid-blacklist.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html