From 9b78891df13d12abaf8d0f0b0ca3e7d5f0e857e3 Mon Sep 17 00:00:00 2001 From: Vladimir Kondratyev Date: Mon, 16 Aug 2021 23:18:43 +0300 Subject: [PATCH] hms(4): Allow attachment to pointer top level collection. to be in line with Microsoft mouse driver [1] [1] https://docs.microsoft.com/en-us/windows-hardware/drivers/hid/top-level-collections-opened-by-windows-for-system-use MFC after: 1 week --- sys/dev/hid/hms.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/hid/hms.c b/sys/dev/hid/hms.c index 014354c3acc3..e9923f55861f 100644 --- a/sys/dev/hid/hms.c +++ b/sys/dev/hid/hms.c @@ -109,6 +109,7 @@ static const struct hidmap_item hms_map_wheel_rev[] = { /* A match on these entries will load hms */ static const struct hid_device_id hms_devs[] = { + { HID_TLC(HUP_GENERIC_DESKTOP, HUG_POINTER) }, { HID_TLC(HUP_GENERIC_DESKTOP, HUG_MOUSE) }, };