summaryrefslogtreecommitdiff
path: root/src/devices/root_device.c
diff options
context:
space:
mode:
authorLi-Ta Lo <ollie@lanl.gov>2004-12-03 22:39:34 +0000
committerLi-Ta Lo <ollie@lanl.gov>2004-12-03 22:39:34 +0000
commit3a81285409cf09091b1704d126a38a5126030d2b (patch)
tree86ca8ef1150cc4118f0ed5619083dbd07fc125b5 /src/devices/root_device.c
parent845e8df6738495d11922148d649a666faf374aa0 (diff)
downloadcoreboot-3a81285409cf09091b1704d126a38a5126030d2b.tar.xz
allocating resource for legacy VGA frame buffer, it is not 100%
correct but it works anyway. git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1811 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices/root_device.c')
-rw-r--r--src/devices/root_device.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/devices/root_device.c b/src/devices/root_device.c
index a02fe7a060..2c641a2260 100644
--- a/src/devices/root_device.c
+++ b/src/devices/root_device.c
@@ -89,9 +89,8 @@ unsigned int scan_static_bus(device_t root, unsigned int max)
if (child->ops && child->ops->enable) {
child->ops->enable(child);
}
- printk_debug("%s %s\n",
- dev_path(child),
- child->enabled?"enabled": "disabled");
+ printk_debug("%s %s\n", dev_path(child),
+ child->enabled?"enabled": "disabled");
}
}
for (link = 0; link < root->links; link++) {