diff options
author | Ben Collins <bcollins@ubuntu.com> | 2006-10-18 08:47:37 -0400 |
---|---|---|
committer | Ben Collins <bcollins@ubuntu.com> | 2006-10-18 08:47:37 -0400 |
commit | d57cdcffe1180cf9b8d1fce048f80d8c6b159827 (patch) | |
tree | 971b62663bfc89641b82bd7b5a81299afe77c49c | |
parent | d77f09e51f5793583ede9733a93bd31a324d051c (diff) |
[hid-core] TurboX Keyboard needs NOGET quirk.
Signed-off-by: Ben Collins <bcollins@ubuntu.com>
-rw-r--r-- | drivers/usb/input/hid-core.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/input/hid-core.c b/drivers/usb/input/hid-core.c index feabda73a6f9..45f44fe33bfe 100644 --- a/drivers/usb/input/hid-core.c +++ b/drivers/usb/input/hid-core.c | |||
@@ -1391,6 +1391,9 @@ void hid_close(struct hid_device *hid) | |||
1391 | 1391 | ||
1392 | #define USB_VENDOR_ID_PANJIT 0x134c | 1392 | #define USB_VENDOR_ID_PANJIT 0x134c |
1393 | 1393 | ||
1394 | #define USB_VENDOR_ID_TURBOX 0x062a | ||
1395 | #define USB_DEVICE_ID_TURBOX_KEYBOARD 0x0201 | ||
1396 | |||
1394 | /* | 1397 | /* |
1395 | * Initialize all reports | 1398 | * Initialize all reports |
1396 | */ | 1399 | */ |
@@ -1778,6 +1781,8 @@ static const struct hid_blacklist { | |||
1778 | { USB_VENDOR_ID_PANJIT, 0x0003, HID_QUIRK_IGNORE }, | 1781 | { USB_VENDOR_ID_PANJIT, 0x0003, HID_QUIRK_IGNORE }, |
1779 | { USB_VENDOR_ID_PANJIT, 0x0004, HID_QUIRK_IGNORE }, | 1782 | { USB_VENDOR_ID_PANJIT, 0x0004, HID_QUIRK_IGNORE }, |
1780 | 1783 | ||
1784 | { USB_VENDOR_ID_TURBOX, USB_DEVICE_ID_TURBOX_KEYBOARD, HID_QUIRK_NOGET }, | ||
1785 | |||
1781 | { 0, 0 } | 1786 | { 0, 0 } |
1782 | }; | 1787 | }; |
1783 | 1788 | ||