Skip to content

Commit b88ee22

Browse files
Allan Sandfeld JensenJiri Kosina
authored andcommitted
HID: logitech: add a few Logitech HID++ device IDs
Adds a few recognized Logitech HID++ capable mice over USB and Bluetooth Signed-off-by: Allan Sandfeld Jensen <kde@carewolf.com> Signed-off-by: Jiri Kosina <jkosina@suse.com>
1 parent dd2c345 commit b88ee22

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

drivers/hid/hid-logitech-hidpp.c

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4603,6 +4603,12 @@ static const struct hid_device_id hidpp_devices[] = {
46034603
HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC081) },
46044604
{ /* Logitech G903 Gaming Mouse over USB */
46054605
HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC086) },
4606+
{ /* Logitech G Pro Gaming Mouse over USB */
4607+
HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC088) },
4608+
{ /* MX Vertical over USB */
4609+
HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC08A) },
4610+
{ /* Logitech G703 Hero Gaming Mouse over USB */
4611+
HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC090) },
46064612
{ /* Logitech G903 Hero Gaming Mouse over USB */
46074613
HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC091) },
46084614
{ /* Logitech G915 TKL Keyboard over USB */
@@ -4613,8 +4619,6 @@ static const struct hid_device_id hidpp_devices[] = {
46134619
{ /* Logitech G923 Wheel (Xbox version) over USB */
46144620
HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_G923_XBOX_WHEEL),
46154621
.driver_data = HIDPP_QUIRK_CLASS_G920 | HIDPP_QUIRK_FORCE_OUTPUT_REPORTS },
4616-
{ /* Logitech G Pro Gaming Mouse over USB */
4617-
HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC088) },
46184622
{ /* Logitech G Pro X Superlight Gaming Mouse over USB */
46194623
HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC094) },
46204624
{ /* Logitech G Pro X Superlight 2 Gaming Mouse over USB */
@@ -4641,9 +4645,13 @@ static const struct hid_device_id hidpp_devices[] = {
46414645
HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb012) },
46424646
{ /* M720 Triathlon mouse over Bluetooth */
46434647
HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb015) },
4648+
{ /* MX Master 2S mouse over Bluetooth */
4649+
HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb019) },
46444650
{ /* MX Ergo trackball over Bluetooth */
46454651
HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb01d) },
46464652
{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb01e) },
4653+
{ /* MX Vertical mouse over Bluetooth */
4654+
HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb020) },
46474655
{ /* Signature M650 over Bluetooth */
46484656
HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb02a) },
46494657
{ /* MX Master 3 mouse over Bluetooth */
@@ -4652,6 +4660,8 @@ static const struct hid_device_id hidpp_devices[] = {
46524660
HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb025) },
46534661
{ /* MX Master 3S mouse over Bluetooth */
46544662
HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb034) },
4663+
{ /* MX Anywhere 3SB mouse over Bluetooth */
4664+
HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb038) },
46554665
{}
46564666
};
46574667

0 commit comments

Comments
 (0)