diff options
author | Stefan Kriwanek <mail@stefankriwanek.de> | 2011-05-27 18:40:29 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-06-08 09:45:37 +0200 |
commit | 74bc6953135ae1478acc18046321bfca05b0e823 (patch) | |
tree | 194f288653928661abb8e8f88e07a19dd643210a /drivers/hid/hid-ids.h | |
parent | dc0a4f0ce2b1a9ef5947cdb6d62f60008a7e42bf (diff) | |
download | talos-obmc-linux-74bc6953135ae1478acc18046321bfca05b0e823.tar.gz talos-obmc-linux-74bc6953135ae1478acc18046321bfca05b0e823.zip |
HID: Add driver to fix Speedlink VAD Cezanne support
Speedlink VAD Cezanne have a hardware bug that makes the cursor "jump" from one
place to another every now and then. The issue are relative motion events
erroneously reported by the device, each having a distance value of +256. This
256 can in fact never occur due to real motion, therefore those events can
safely be ignored. The driver also drops useless EV_REL events with a value of
0, that the device sends every time it sends an "real" EV_REL or EV_KEY event.
Signed-off-by: Stefan Kriwanek <mail@stefankriwanek.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-ids.h')
-rw-r--r-- | drivers/hid/hid-ids.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h index 0b374a6d6db0..cc298cbc90f2 100644 --- a/drivers/hid/hid-ids.h +++ b/drivers/hid/hid-ids.h @@ -658,6 +658,9 @@ #define USB_VENDOR_ID_WISEGROUP_LTD2 0x6677 #define USB_DEVICE_ID_SMARTJOY_DUAL_PLUS 0x8802 +#define USB_VENDOR_ID_X_TENSIONS 0x1ae7 +#define USB_DEVICE_ID_SPEEDLINK_VAD_CEZANNE 0x9001 + #define USB_VENDOR_ID_YEALINK 0x6993 #define USB_DEVICE_ID_YEALINK_P1K_P4K_B2K 0xb001 |