summaryrefslogtreecommitdiffstats
path: root/drivers/hid/hid-ite.c
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2018-11-26 11:52:18 +0100
committerBenjamin Tissoires <benjamin.tissoires@redhat.com>2018-11-30 14:12:07 +0100
commit4050207485e47e00353e87f2fe2166083e282688 (patch)
tree1a03b82c52b1c1a1a6b7cc07ee0b029df2d1665b /drivers/hid/hid-ite.c
parentffe0e7cf290f5c9d1392134b4ef8da2a3761a4cd (diff)
downloadlinux-4050207485e47e00353e87f2fe2166083e282688.tar.bz2
HID: ite: Add USB id match for another ITE based keyboard rfkill key quirk
The 258a:6a88 keyboard-dock shipped with the Prowise PT301 tablet is likely another ITE based design. The controller die is directly bonded to the PCB with a blob of black glue on top so there are no markings and the 258a vendor-id used is unknown anywhere. But the keyboard has the exact same hotkeys mapped to Fn+F1 - F10 as the other ITE8595 keyboard I have *and* it has the same quirky behavior wrt the rfkill hotkey. Either way as said this keyboard has the same quirk for its rfkill / airplane mode hotkey as the ITE 8595 chip, it only sends a single release event when pressed and released, it never sends a press event. This commit adds the 258a:6a88 USB id to the hid-ite id-table, fixing the rfkill key not working on this keyboard. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Diffstat (limited to 'drivers/hid/hid-ite.c')
-rw-r--r--drivers/hid/hid-ite.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hid/hid-ite.c b/drivers/hid/hid-ite.c
index 1882a4ab0f29..98b059d79bc8 100644
--- a/drivers/hid/hid-ite.c
+++ b/drivers/hid/hid-ite.c
@@ -42,6 +42,7 @@ static int ite_event(struct hid_device *hdev, struct hid_field *field,
static const struct hid_device_id ite_devices[] = {
{ HID_USB_DEVICE(USB_VENDOR_ID_ITE, USB_DEVICE_ID_ITE8595) },
+ { HID_USB_DEVICE(USB_VENDOR_ID_258A, USB_DEVICE_ID_258A_6A88) },
{ }
};
MODULE_DEVICE_TABLE(hid, ite_devices);