Message ID | 20220404100311.3304-1-hadess@hadess.net |
---|---|
State | Accepted |
Commit | 3ab1c27f925ba8cc61ed35640c6bdca183657407 |
Headers | show |
Series | HID: logitech-hidpp: Add Signature M650 | expand |
On Mon, 04 Apr 2022 12:03:11 +0200, Bastien Nocera wrote: > Add support for HID++ over Bluetooth for the Logitech Signature > M650 mouse. It comes with a dongle but can also be used over Bluetooth > without one. > > Applied to hid/hid.git (for-6.3/logitech), thanks! [1/1] HID: logitech-hidpp: Add Signature M650 https://git.kernel.org/hid/hid/c/8d24fa97da85 Cheers,
diff --git a/drivers/hid/hid-logitech-hidpp.c b/drivers/hid/hid-logitech-hidpp.c index 81de88ab2ecc..a2a9f6f54b2e 100644 --- a/drivers/hid/hid-logitech-hidpp.c +++ b/drivers/hid/hid-logitech-hidpp.c @@ -4344,6 +4344,8 @@ static const struct hid_device_id hidpp_devices[] = { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb01d) }, { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb01e), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 }, + { /* Signature M650 over Bluetooth */ + HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb02a) }, { /* MX Master 3 mouse over Bluetooth */ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_LOGITECH, 0xb023), .driver_data = HIDPP_QUIRK_HI_RES_SCROLL_X2121 },
Add support for HID++ over Bluetooth for the Logitech Signature M650 mouse. It comes with a dongle but can also be used over Bluetooth without one. Signed-off-by: Bastien Nocera <hadess@hadess.net> --- drivers/hid/hid-logitech-hidpp.c | 2 ++ 1 file changed, 2 insertions(+)