Change BUS_PROBE_HOOVER from -500 to -1000000. We have PCI bus drivers

return -1000 and -10000 to establish a pecking order and we don't want
catch-all or match-all drivers to attach instead of them.

With this change poto(4) can be compiled into the kernel (or preloaded
from the loader), without impact.
This commit is contained in:
Marcel Moolenaar 2015-06-06 17:25:45 +00:00
parent 271790782c
commit a4a8729890
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=284088

View File

@ -612,7 +612,7 @@ void bus_data_generation_update(void);
#define BUS_PROBE_DEFAULT (-20) /* Base OS default driver */
#define BUS_PROBE_LOW_PRIORITY (-40) /* Older, less desirable drivers */
#define BUS_PROBE_GENERIC (-100) /* generic driver for dev */
#define BUS_PROBE_HOOVER (-500) /* Generic dev for all devs on bus */
#define BUS_PROBE_HOOVER (-1000000) /* Driver for any dev on bus */
#define BUS_PROBE_NOWILDCARD (-2000000000) /* No wildcard device matches */
/**