I would like to bind a hid device to a specific driver.
Unfortunately hid-generic somehow "steals" the binding when the device is reconnected.
I know i can unbind and bind the device by hand this way:
# echo ... > /sys/bus/hid/drivers/hid-generic/unbind
# echo ... > /sys/bus/hid/drivers/customdriver/bind
But isn't there something like a priority for drivers to automatically bin a device to a driver?
Thank you in advance!