diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-10-26 16:47:05 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-10-26 16:47:05 +0000 |
commit | 39e722958c80930a0d58a7cb267a0387811be099 (patch) | |
tree | f1ca674ca7455cdd18b73ea478b2ebccc4cfff33 /src/devices/device.c | |
parent | d73c1b5bf1246855a4d4e847702214a3eeb6ab82 (diff) |
Now that the resource allocator is working nicely we can turn down the debug
level output and make some output SPEW only.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4857 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices/device.c')
-rw-r--r-- | src/devices/device.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/devices/device.c b/src/devices/device.c index 0dd6e0bf47..2f01ae2df2 100644 --- a/src/devices/device.c +++ b/src/devices/device.c @@ -890,10 +890,9 @@ void dev_enumerate(void) printk_info("Enumerating buses...\n"); root = &dev_root; - show_all_devs(BIOS_DEBUG, "Before Device Enumeration."); - printk_debug("Compare with tree...\n"); - - show_devs_tree(root, BIOS_DEBUG, 0, 0); + show_all_devs(BIOS_SPEW, "Before Device Enumeration."); + printk_spew("Compare with tree...\n"); + show_devs_tree(root, BIOS_SPEW, 0, 0); if (root->chip_ops && root->chip_ops->enable_dev) { root->chip_ops->enable_dev(root); @@ -945,7 +944,7 @@ void dev_configure(void) read_resources(&root->link[0]); printk_info("Done reading resources.\n"); - print_resource_tree(root, BIOS_DEBUG, "After reading."); + print_resource_tree(root, BIOS_SPEW, "After reading."); /* Compute resources for all domains. */ for (child = root->link[0].children; child; child = child->sibling) { @@ -1021,7 +1020,7 @@ void dev_configure(void) } assign_resources(&root->link[0]); printk_info("Done setting resources.\n"); - print_resource_tree(root, BIOS_DEBUG, "After assigning values."); + print_resource_tree(root, BIOS_SPEW, "After assigning values."); printk_info("Done allocating resources.\n"); } @@ -1068,5 +1067,5 @@ void dev_initialize(void) } } printk_info("Devices initialized\n"); - show_all_devs(BIOS_DEBUG, "After init."); + show_all_devs(BIOS_SPEW, "After init."); } |