diff options
author | Alexander Shishkin <virtuoso@slind.org> | 2010-02-02 11:43:32 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2010-02-02 15:30:34 -0500 |
commit | 1c3a02c215a5b955b342f29dc1719e1a5771eaf1 (patch) | |
tree | 9d4db5d414509d0e5d1027dff393b1b55788cbd9 | |
parent | 7d39e849912f0c3c8c6fc94be7bf7d120b1ee0ba (diff) |
HID: add NOGET quirk for Prodige Cordless Combo
I happen to own a keyboard identified as 05af:3062 which is labeled as
"FlatX Coldless Combo" by "Prodige", which exhibits input problems without
NOGET quirk. For some reason, lsusb reports this device as "Jing-Mold
Enterprise Co., Ltd", which is not mentioned anywhere on the package.
A quick search on the intenet shows that there a other people who have
this in their lsusb output, but apparently they don't have the problem
I am seeing (or they are not such furious typists as myself).
Signed-off-by: Alexander Shishkin <virtuoso@slind.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | drivers/hid/hid-ids.h | 3 | ||||
-rw-r--r-- | drivers/hid/usbhid/hid-quirks.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h index 6c38359385a9..4e5adc3fac4a 100644 --- a/drivers/hid/hid-ids.h +++ b/drivers/hid/hid-ids.h | |||
@@ -383,6 +383,9 @@ | |||
383 | #define USB_VENDOR_ID_POWERCOM 0x0d9f | 383 | #define USB_VENDOR_ID_POWERCOM 0x0d9f |
384 | #define USB_DEVICE_ID_POWERCOM_UPS 0x0002 | 384 | #define USB_DEVICE_ID_POWERCOM_UPS 0x0002 |
385 | 385 | ||
386 | #define USB_VENDOR_ID_PRODIGE 0x05af | ||
387 | #define USB_DEVICE_ID_PRODIGE_CORDLESS 0x3062 | ||
388 | |||
386 | #define USB_VENDOR_ID_SAITEK 0x06a3 | 389 | #define USB_VENDOR_ID_SAITEK 0x06a3 |
387 | #define USB_DEVICE_ID_SAITEK_RUMBLEPAD 0xff17 | 390 | #define USB_DEVICE_ID_SAITEK_RUMBLEPAD 0xff17 |
388 | 391 | ||
diff --git a/drivers/hid/usbhid/hid-quirks.c b/drivers/hid/usbhid/hid-quirks.c index 38773dc2821b..fc074c11e0d3 100644 --- a/drivers/hid/usbhid/hid-quirks.c +++ b/drivers/hid/usbhid/hid-quirks.c | |||
@@ -45,6 +45,7 @@ static const struct hid_blacklist { | |||
45 | 45 | ||
46 | { USB_VENDOR_ID_PANTHERLORD, USB_DEVICE_ID_PANTHERLORD_TWIN_USB_JOYSTICK, HID_QUIRK_MULTI_INPUT | HID_QUIRK_SKIP_OUTPUT_REPORTS }, | 46 | { USB_VENDOR_ID_PANTHERLORD, USB_DEVICE_ID_PANTHERLORD_TWIN_USB_JOYSTICK, HID_QUIRK_MULTI_INPUT | HID_QUIRK_SKIP_OUTPUT_REPORTS }, |
47 | { USB_VENDOR_ID_PLAYDOTCOM, USB_DEVICE_ID_PLAYDOTCOM_EMS_USBII, HID_QUIRK_MULTI_INPUT }, | 47 | { USB_VENDOR_ID_PLAYDOTCOM, USB_DEVICE_ID_PLAYDOTCOM_EMS_USBII, HID_QUIRK_MULTI_INPUT }, |
48 | { USB_VENDOR_ID_PRODIGE, USB_DEVICE_ID_PRODIGE_CORDLESS, HID_QUIRK_NOGET }, | ||
48 | 49 | ||
49 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_UC100KM, HID_QUIRK_NOGET }, | 50 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_UC100KM, HID_QUIRK_NOGET }, |
50 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_CS124U, HID_QUIRK_NOGET }, | 51 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_CS124U, HID_QUIRK_NOGET }, |