Call mainboard init functions.
[coreboot.git] / src / devices / device.c
index 79d22109d4f74b7f2fa4a3487fb4320fdc19ad6b..94cd952bdb56b33624373179b3826e13dc0e0103 100644 (file)
@@ -1104,6 +1104,9 @@ void dev_initialize(void)
 
        printk(BIOS_INFO, "Initializing devices...\n");
 
+       /* First call the mainboard init. */
+       init_dev(&dev_root);
+
        /* now initialize everything. */
        for (link = dev_root.link_list; link; link = link->next)
                init_link(link);