18.05.24 19:29, Ivan Quitschal:

Hi Warner /  WBR / Oleksandr

Im not sure if that’s the case with this uhid.ko, but you guys remember I had a priority issue with this module and Vladimir made me a patch to fix the attach priority?

Warner, was it fixed since then?

Let me show the patch I use to this very day important line is this, the patch might be wrong , because im still on 14-current

+//     return (BUS_PROBE_GENERIC + 1);

        return (BUS_PROBE_DEFAULT + 1);

diff --git a/sys/dev/usb/input/usbhid.c b/sys/dev/usb/input/usbhid.c

index 174e1c28ae96..7b19d713c943 100644

--- a/sys/dev/usb/input/usbhid.c

+++ b/sys/dev/usb/input/usbhid.c

@@ -802,6 +802,7 @@ usbhid_probe(device_t dev)

        if (hid_test_quirk(&sc->sc_hw, HQ_HID_IGNORE))

                return (ENXIO);

+//     return (BUS_PROBE_GENERIC + 1);

        return (BUS_PROBE_DEFAULT + 1);

}


If I correctly understand this patch alredy in main with 975407b1d8dcceac2b54e2c4df96aadec7dc4c3a

Reply via email to