File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 868
868
#define USB_DEVICE_ID_LOGITECH_NANO_RECEIVER_2 0xc534
869
869
#define USB_DEVICE_ID_LOGITECH_NANO_RECEIVER_LIGHTSPEED_1 0xc539
870
870
#define USB_DEVICE_ID_LOGITECH_NANO_RECEIVER_LIGHTSPEED_1_1 0xc53f
871
- #define USB_DEVICE_ID_LOGITECH_NANO_RECEIVER_LIGHTSPEED_1_2 0xc547
872
871
#define USB_DEVICE_ID_LOGITECH_NANO_RECEIVER_POWERPLAY 0xc53a
873
872
#define USB_DEVICE_ID_SPACETRAVELLER 0xc623
874
873
#define USB_DEVICE_ID_SPACENAVIGATOR 0xc626
Original file line number Diff line number Diff line change @@ -1695,12 +1695,11 @@ static int logi_dj_raw_event(struct hid_device *hdev,
1695
1695
}
1696
1696
/*
1697
1697
* Mouse-only receivers send unnumbered mouse data. The 27 MHz
1698
- * receiver uses 6 byte packets, the nano receiver 8 bytes,
1699
- * the lightspeed receiver (Pro X Superlight) 13 bytes.
1698
+ * receiver uses 6 byte packets, the nano receiver 8 bytes.
1700
1699
*/
1701
1700
if (djrcv_dev -> unnumbered_application == HID_GD_MOUSE &&
1702
- size <= 13 ) {
1703
- u8 mouse_report [14 ];
1701
+ size <= 8 ) {
1702
+ u8 mouse_report [9 ];
1704
1703
1705
1704
/* Prepend report id */
1706
1705
mouse_report [0 ] = REPORT_TYPE_MOUSE ;
@@ -1984,10 +1983,6 @@ static const struct hid_device_id logi_dj_receivers[] = {
1984
1983
HID_USB_DEVICE (USB_VENDOR_ID_LOGITECH ,
1985
1984
USB_DEVICE_ID_LOGITECH_NANO_RECEIVER_LIGHTSPEED_1_1 ),
1986
1985
.driver_data = recvr_type_gaming_hidpp },
1987
- { /* Logitech lightspeed receiver (0xc547) */
1988
- HID_USB_DEVICE (USB_VENDOR_ID_LOGITECH ,
1989
- USB_DEVICE_ID_LOGITECH_NANO_RECEIVER_LIGHTSPEED_1_2 ),
1990
- .driver_data = recvr_type_gaming_hidpp },
1991
1986
1992
1987
{ /* Logitech 27 MHz HID++ 1.0 receiver (0xc513) */
1993
1988
HID_USB_DEVICE (USB_VENDOR_ID_LOGITECH , USB_DEVICE_ID_MX3000_RECEIVER ),
You can’t perform that action at this time.
0 commit comments