Skip to content

Commit 992ff2c

Browse files
committed
HID: logitech-dj: add support of the G700(s) receiver
Both the G700 and the G700s are sharing the same receiver. Include support for this receiver in hid-logitech-dj so that userspace can differentiate both. Signed-off-by: Benjamin Tissoires <[email protected]> Reviewed-by: Hans de Goede <[email protected]>
1 parent 6f50fa2 commit 992ff2c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

drivers/hid/hid-logitech-dj.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -959,6 +959,7 @@ static void logi_hidpp_recv_queue_notif(struct hid_device *hdev,
959959
break;
960960
case 0x07:
961961
device_type = "eQUAD step 4 Gaming";
962+
logi_hidpp_dev_conn_notif_equad(hdev, hidpp_report, &workitem);
962963
break;
963964
case 0x08:
964965
device_type = "eQUAD step 4 for gamepads";
@@ -1832,6 +1833,10 @@ static const struct hid_device_id logi_dj_receivers[] = {
18321833
HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH,
18331834
USB_DEVICE_ID_LOGITECH_NANO_RECEIVER_2),
18341835
.driver_data = recvr_type_hidpp},
1836+
{ /* Logitech G700(s) receiver (0xc531) */
1837+
HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH,
1838+
0xc531),
1839+
.driver_data = recvr_type_gaming_hidpp},
18351840
{ /* Logitech lightspeed receiver (0xc539) */
18361841
HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH,
18371842
USB_DEVICE_ID_LOGITECH_NANO_RECEIVER_LIGHTSPEED),

0 commit comments

Comments
 (0)