summaryrefslogtreecommitdiff
path: root/hw/usb/hid-logitech-hidpp20.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/usb/hid-logitech-hidpp20.c')
-rw-r--r--hw/usb/hid-logitech-hidpp20.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/hw/usb/hid-logitech-hidpp20.c b/hw/usb/hid-logitech-hidpp20.c
index 4e43eb26a1..a3a50e6cd3 100644
--- a/hw/usb/hid-logitech-hidpp20.c
+++ b/hw/usb/hid-logitech-hidpp20.c
@@ -317,10 +317,13 @@ void hidpp20_init_features(LHidDevice *hd) {
hd->info.features = features_m525;
hd->info.features_count = ARRAY_SIZE(features_m525);
break;
- case 0x4026:
+ case 0x4101:
hd->info.features = features_t650;
hd->info.features_count = ARRAY_SIZE(features_t650);
break;
+ default:
+ /* HID++ 2.0 devices must always supply features */
+ assert(!(hd->info.protocol_version >= 0x0200));
}
}