diff options
| author | Justin Hibbits <jhibbits@FreeBSD.org> | 2018-10-23 01:56:52 +0000 |
|---|---|---|
| committer | Justin Hibbits <jhibbits@FreeBSD.org> | 2018-10-23 01:56:52 +0000 |
| commit | 3c22d7899730a4a7434bb17bd2d1ac6f162ec74e (patch) | |
| tree | cccc229d59a6662847b2d9bac17b34ec185649c5 /sys/dev/dpaa | |
| parent | 17e81b7863d0d394c478f11bf3761f057b8db4c9 (diff) | |
Notes
Diffstat (limited to 'sys/dev/dpaa')
| -rw-r--r-- | sys/dev/dpaa/bman_fdt.c | 3 | ||||
| -rw-r--r-- | sys/dev/dpaa/qman_fdt.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/dpaa/bman_fdt.c b/sys/dev/dpaa/bman_fdt.c index 8656d0ef0fdc..1e7bce6be43c 100644 --- a/sys/dev/dpaa/bman_fdt.c +++ b/sys/dev/dpaa/bman_fdt.c @@ -68,7 +68,8 @@ static driver_t bman_driver = { }; static devclass_t bman_devclass; -DRIVER_MODULE(bman, simplebus, bman_driver, bman_devclass, 0, 0); +EARLY_DRIVER_MODULE(bman, simplebus, bman_driver, bman_devclass, 0, 0, + BUS_PASS_SUPPORTDEV); static int bman_fdt_probe(device_t dev) diff --git a/sys/dev/dpaa/qman_fdt.c b/sys/dev/dpaa/qman_fdt.c index 9eca3944b4d8..bb40f724e7f1 100644 --- a/sys/dev/dpaa/qman_fdt.c +++ b/sys/dev/dpaa/qman_fdt.c @@ -68,7 +68,8 @@ static driver_t qman_driver = { }; static devclass_t qman_devclass; -DRIVER_MODULE(qman, simplebus, qman_driver, qman_devclass, 0, 0); +EARLY_DRIVER_MODULE(qman, simplebus, qman_driver, qman_devclass, 0, 0, + BUS_PASS_SUPPORTDEV); static int qman_fdt_probe(device_t dev) |
