diff options
Diffstat (limited to 'sys/i386')
-rw-r--r-- | sys/i386/i386/autoconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/i386/i386/autoconf.c b/sys/i386/i386/autoconf.c index 23c9644..029ed2e 100644 --- a/sys/i386/i386/autoconf.c +++ b/sys/i386/i386/autoconf.c @@ -91,6 +91,9 @@ static void configure_first(dummy) void *dummy; { + + /* nexus0 is the top of the i386 device tree */ + device_add_child(root_bus, "nexus", 0); } static void @@ -105,9 +108,6 @@ configure(dummy) */ enable_intr(); - /* nexus0 is the top of the i386 device tree */ - device_add_child(root_bus, "nexus", 0); - /* initialize new bus architecture */ root_bus_configure(); |