aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/dpaa
diff options
context:
space:
mode:
authorJustin Hibbits <jhibbits@FreeBSD.org>2018-10-23 01:56:52 +0000
committerJustin Hibbits <jhibbits@FreeBSD.org>2018-10-23 01:56:52 +0000
commit3c22d7899730a4a7434bb17bd2d1ac6f162ec74e (patch)
treecccc229d59a6662847b2d9bac17b34ec185649c5 /sys/dev/dpaa
parent17e81b7863d0d394c478f11bf3761f057b8db4c9 (diff)
Notes
Diffstat (limited to 'sys/dev/dpaa')
-rw-r--r--sys/dev/dpaa/bman_fdt.c3
-rw-r--r--sys/dev/dpaa/qman_fdt.c3
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)