The branch main has been updated by wulf:

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

commit 42e2a173c74e88cf0436c79291f89d76328ddc7b
Author:     Vladimir Kondratyev <[email protected]>
AuthorDate: 2022-03-02 23:35:24 +0000
Commit:     Vladimir Kondratyev <[email protected]>
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

Reply via email to