Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Aug 2021 22:26:19 GMT
From:      Vladimir Kondratyev <wulf@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 290677c3d6f6 - stable/13 - hms(4): Allow attachment to pointer top level collection.
Message-ID:  <202108232226.17NMQJwM014834@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by wulf:

URL: https://cgit.FreeBSD.org/src/commit/?id=290677c3d6f68882d68d3084f8510767ed2d8e08

commit 290677c3d6f68882d68d3084f8510767ed2d8e08
Author:     Vladimir Kondratyev <wulf@FreeBSD.org>
AuthorDate: 2021-08-16 20:18:43 +0000
Commit:     Vladimir Kondratyev <wulf@FreeBSD.org>
CommitDate: 2021-08-23 22:22:43 +0000

    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
    
    (cherry picked from commit 9b78891df13d12abaf8d0f0b0ca3e7d5f0e857e3)
---
 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) },
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108232226.17NMQJwM014834>