Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Mar 2022 23:36:44 GMT
From:      Vladimir Kondratyev <wulf@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 42e2a173c74e - main - hms(4): Change probe priority to BUS_PROBE_GENERIC
Message-ID:  <202203022336.222Naieu001698@gitrepo.freebsd.org>

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

URL: https://cgit.FreeBSD.org/src/commit/?id=42e2a173c74e88cf0436c79291f89d76328ddc7b

commit 42e2a173c74e88cf0436c79291f89d76328ddc7b
Author:     Vladimir Kondratyev <wulf@FreeBSD.org>
AuthorDate: 2022-03-02 23:35:24 +0000
Commit:     Vladimir Kondratyev <wulf@FreeBSD.org>
CommitDate: 2022-03-02 23:35:24 +0000

    hms(4): Change probe priority to BUS_PROBE_GENERIC
    
    to give ietp(4) and bcm5974(4) drivers precedence over hms(4).
    
    MFC after:      2 month
---
 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?202203022336.222Naieu001698>