diff options
author | Hans de Goede <hdegoede@redhat.com> | 2017-05-10 17:12:53 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2017-05-11 10:27:48 +0200 |
commit | f1918be1c1dd6d97390513677f184c4d5e22e2ac (patch) | |
tree | c2988c70d7a195c822d103ee25a7804504e8a789 /drivers/hid/hid-ids.h | |
parent | 61df56bef97e1708bfbc006b307b00834ad61fe8 (diff) | |
download | op-kernel-dev-f1918be1c1dd6d97390513677f184c4d5e22e2ac.zip op-kernel-dev-f1918be1c1dd6d97390513677f184c4d5e22e2ac.tar.gz |
HID: ite: Add hid-ite driver
The ITE8595 keyboard uses the HID_GD_RFKILL_BTN usage code
from the Wireless Radio Controls Application Collection Microsoft
has defined for Windows 8 and later.
However it has a quirk, when the rfkill hotkey is pressed it does
generate a report for the collection, but the reported value is
always 0. Luckily it is the only button in this collection / report,
and it sends a report on release only, so receiving a report means the
button was pressed.
This commit adds a hid-ite driver which watches for the Wireless Radio
Controls Application Collection report and then reports a KEY_RFKILL event,
ignoring the value, making the rfkill on this keyboard work.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-ids.h')
-rw-r--r-- | drivers/hid/hid-ids.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h index 643390b..79674a3 100644 --- a/drivers/hid/hid-ids.h +++ b/drivers/hid/hid-ids.h @@ -559,6 +559,7 @@ #define USB_DEVICE_ID_ITE_LENOVO_YOGA 0x8386 #define USB_DEVICE_ID_ITE_LENOVO_YOGA2 0x8350 #define USB_DEVICE_ID_ITE_LENOVO_YOGA900 0x8396 +#define USB_DEVICE_ID_ITE8595 0x8595 #define USB_VENDOR_ID_JABRA 0x0b0e #define USB_DEVICE_ID_JABRA_SPEAK_410 0x0412 |