diff options
author | Myles Watson <mylesgw@gmail.com> | 2010-08-16 16:25:23 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2010-08-16 16:25:23 +0000 |
commit | 1bd3fb750de5de8ae832d902200e151002b1705a (patch) | |
tree | 67ad5b8ce932b75651996d22452f3550ba0b8f71 /src | |
parent | 6d7c1fc3a4a5dbf0c9f784b76f878f05386425a0 (diff) |
Call mainboard init functions.
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Peter Stuge <peter@stuge.se>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5698 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/devices/device.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/devices/device.c b/src/devices/device.c index 79d22109d4..94cd952bdb 100644 --- a/src/devices/device.c +++ b/src/devices/device.c @@ -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); |