From 8d61d8cd7379be99075e674894a89e144ef20b91 Mon Sep 17 00:00:00 2001 From: Peter Wu Date: Mon, 31 Mar 2014 12:50:13 +0200 Subject: unifying: Fix PID of T650 touchpad Also safe-guard against missing feature array for HID++ 2.0 devices. Signed-off-by: Peter Wu --- hw/usb/hid-logitech-hidpp20.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'hw/usb/hid-logitech-hidpp20.c') 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)); } } -- cgit v1.2.1