mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Use EARLY_DRIVER_MODULE() for ti_scm driver to be attached before
am335x_prcm driver which uses it. Used BUS_PASS_BUS is a quick pick for now and may be revised when other drivers start using multipass feature. This is needed after an update of Linux dts files done in r295436.
This commit is contained in:
parent
ec950d0aef
commit
547e50e022
1 changed files with 2 additions and 1 deletions
|
|
@ -170,4 +170,5 @@ static driver_t ti_scm_driver = {
|
|||
|
||||
static devclass_t ti_scm_devclass;
|
||||
|
||||
DRIVER_MODULE(ti_scm, simplebus, ti_scm_driver, ti_scm_devclass, 0, 0);
|
||||
EARLY_DRIVER_MODULE(ti_scm, simplebus, ti_scm_driver, ti_scm_devclass, 0, 0,
|
||||
BUS_PASS_BUS + BUS_PASS_ORDER_MIDDLE);
|
||||
|
|
|
|||
Loading…
Reference in a new issue