diff options
author | Alessandro Manca <crizan.git@gmail.com> | 2023-03-10 19:49:33 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2023-03-10 20:59:51 +0300 |
commit | dbf56d2fb53b7397002219bd221cfc72aadfdc82 (patch) | |
tree | 31a3340fef7fa840fe1a9d48cddce2b1808b82ff /drivers/hid/hid-topre.c | |
parent | 50c6b976fb66f623440066f8e44309b4c2f687a0 (diff) | |
download | linux-dbf56d2fb53b7397002219bd221cfc72aadfdc82.tar.xz |
HID: topre: Add support for 87 keys Realforce R2
The tenkeyless version of the Realforce R2 has the same issue of the
full size one, the report fixup is needed to make n-key rollover
work instead of 6 key rollover
Signed-off-by: Alessandro Manca <crizan.git@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-topre.c')
-rw-r--r-- | drivers/hid/hid-topre.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/hid/hid-topre.c b/drivers/hid/hid-topre.c index 88a91cdad5f8..d1d5ca310ead 100644 --- a/drivers/hid/hid-topre.c +++ b/drivers/hid/hid-topre.c @@ -36,6 +36,8 @@ static __u8 *topre_report_fixup(struct hid_device *hdev, __u8 *rdesc, static const struct hid_device_id topre_id_table[] = { { HID_USB_DEVICE(USB_VENDOR_ID_TOPRE, USB_DEVICE_ID_TOPRE_REALFORCE_R2_108) }, + { HID_USB_DEVICE(USB_VENDOR_ID_TOPRE, + USB_DEVICE_ID_TOPRE_REALFORCE_R2_87) }, { } }; MODULE_DEVICE_TABLE(hid, topre_id_table); |