diff options
Diffstat (limited to 'sys/kern/subr_bus.c')
-rw-r--r-- | sys/kern/subr_bus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c index b390b36..162c32b 100644 --- a/sys/kern/subr_bus.c +++ b/sys/kern/subr_bus.c @@ -2168,7 +2168,7 @@ root_bus_module_handler(module_t mod, int what, void* arg) switch (what) { case MOD_LOAD: compile_methods(&root_driver); - root_bus = make_device(NULL, "root", 0, NULL); + root_bus = make_device(NULL, "root", 0); root_bus->desc = "System root bus"; root_bus->ops = root_driver.ops; root_bus->driver = &root_driver; |