Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Hans de Goede and committed by
Benjamin Tissoires
40502074 ffe0e7cf

+4
+3
drivers/hid/hid-ids.h
··· 17 17 #ifndef HID_IDS_H_FILE 18 18 #define HID_IDS_H_FILE 19 19 20 + #define USB_VENDOR_ID_258A 0x258a 21 + #define USB_DEVICE_ID_258A_6A88 0x6a88 22 + 20 23 #define USB_VENDOR_ID_3M 0x0596 21 24 #define USB_DEVICE_ID_3M1968 0x0500 22 25 #define USB_DEVICE_ID_3M2256 0x0502
+1
drivers/hid/hid-ite.c
··· 42 42 43 43 static const struct hid_device_id ite_devices[] = { 44 44 { HID_USB_DEVICE(USB_VENDOR_ID_ITE, USB_DEVICE_ID_ITE8595) }, 45 + { HID_USB_DEVICE(USB_VENDOR_ID_258A, USB_DEVICE_ID_258A_6A88) }, 45 46 { } 46 47 }; 47 48 MODULE_DEVICE_TABLE(hid, ite_devices);