diff options
author | Filipe Laíns <lains@archlinux.org> | 2021-01-04 23:47:17 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2021-01-08 17:51:41 +0300 |
commit | e400071a805d6229223a98899e9da8c6233704a1 (patch) | |
tree | 0e78017c437c3f11753f80811215b2f8f6b6bc0c | |
parent | 4d2b71634b5ad142617e430bc6ef659331a576d0 (diff) | |
download | linux-e400071a805d6229223a98899e9da8c6233704a1.tar.xz |
HID: logitech-dj: add the G602 receiver
Tested. The device gets correctly exported to userspace and I can see
mouse and keyboard events.
Signed-off-by: Filipe Laíns <lains@archlinux.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | drivers/hid/hid-logitech-dj.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/hid/hid-logitech-dj.c b/drivers/hid/hid-logitech-dj.c index 1ffcfc9a1e03..45e7e0bdd382 100644 --- a/drivers/hid/hid-logitech-dj.c +++ b/drivers/hid/hid-logitech-dj.c @@ -1869,6 +1869,10 @@ static const struct hid_device_id logi_dj_receivers[] = { HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xc531), .driver_data = recvr_type_gaming_hidpp}, + { /* Logitech G602 receiver (0xc537) */ + HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, + 0xc537), + .driver_data = recvr_type_gaming_hidpp}, { /* Logitech lightspeed receiver (0xc539) */ HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_NANO_RECEIVER_LIGHTSPEED_1), |