mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Convert drivers somehow missed in r200874 to multipass probing.
This commit is contained in:
parent
d0fae855ef
commit
6948a04f2c
2 changed files with 4 additions and 2 deletions
|
|
@ -159,7 +159,8 @@ static devclass_t psycho_devclass;
|
|||
|
||||
DEFINE_CLASS_0(pcib, psycho_driver, psycho_methods,
|
||||
sizeof(struct psycho_softc));
|
||||
DRIVER_MODULE(psycho, nexus, psycho_driver, psycho_devclass, 0, 0);
|
||||
EARLY_DRIVER_MODULE(psycho, nexus, psycho_driver, psycho_devclass, 0, 0,
|
||||
BUS_PASS_BUS);
|
||||
|
||||
static SLIST_HEAD(, psycho_softc) psycho_softcs =
|
||||
SLIST_HEAD_INITIALIZER(psycho_softcs);
|
||||
|
|
|
|||
|
|
@ -158,7 +158,8 @@ static devclass_t schizo_devclass;
|
|||
|
||||
DEFINE_CLASS_0(pcib, schizo_driver, schizo_methods,
|
||||
sizeof(struct schizo_softc));
|
||||
DRIVER_MODULE(schizo, nexus, schizo_driver, schizo_devclass, 0, 0);
|
||||
EARLY_DRIVER_MODULE(schizo, nexus, schizo_driver, schizo_devclass, 0, 0,
|
||||
BUS_PASS_BUS);
|
||||
|
||||
static SLIST_HEAD(, schizo_softc) schizo_softcs =
|
||||
SLIST_HEAD_INITIALIZER(schizo_softcs);
|
||||
|
|
|
|||
Loading…
Reference in a new issue