Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Dec 2022 08:36:54 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: ebe585ee54c1 - stable/13 - hms(4): Change probe priority to BUS_PROBE_GENERIC
Message-ID:  <202212240836.2BO8as20083300@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=ebe585ee54c1668c6eb82969cb76484f998dc5d2

commit ebe585ee54c1668c6eb82969cb76484f998dc5d2
Author:     Vladimir Kondratyev <wulf@FreeBSD.org>
AuthorDate: 2022-03-02 23:35:24 +0000
Commit:     Vladimir Kondratyev <wulf@FreeBSD.org>
CommitDate: 2022-12-24 08:17:47 +0000

    hms(4): Change probe priority to BUS_PROBE_GENERIC
    
    to give ietp(4) and bcm5974(4) drivers precedence over hms(4).
    
    (cherry picked from commit 42e2a173c74e88cf0436c79291f89d76328ddc7b)
---
 sys/dev/hid/hms.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/hid/hms.c b/sys/dev/hid/hms.c
index e9923f55861f..ae0380ecb6ce 100644
--- a/sys/dev/hid/hms.c
+++ b/sys/dev/hid/hms.c
@@ -229,7 +229,7 @@ hms_probe(device_t dev)
 	else
 		hidbus_set_desc(dev, "Mouse");
 
-	return (BUS_PROBE_DEFAULT);
+	return (BUS_PROBE_GENERIC);
 }
 
 static int



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