Author: myles
Date: Wed Jun  2 23:13:44 2010
New Revision: 5605
URL: https://tracker.coreboot.org/trac/coreboot/changeset/5605

Log:
Fix hard-coded log levels.

Signed-off-by: Myles Watson <[email protected]>
Acked-by: Myles Watson <[email protected]>

Modified:
   trunk/src/devices/device_util.c

Modified: trunk/src/devices/device_util.c
==============================================================================
--- trunk/src/devices/device_util.c     Tue Jun  1 21:28:45 2010        (r5604)
+++ trunk/src/devices/device_util.c     Wed Jun  2 23:13:44 2010        (r5605)
@@ -599,12 +599,12 @@
                indent[i] = ' ';
        indent[i] = '\0';
 
-       do_printk(BIOS_DEBUG, "%s%s links %x child on link 0", indent,
+       do_printk(debug_level, "%s%s links %x child on link 0", indent,
                  dev_path(root), root->links);
-       do_printk(BIOS_DEBUG, " %s\n", root->link[0].children ?
+       do_printk(debug_level, " %s\n", root->link[0].children ?
                  dev_path(root->link[0].children) : "NULL");
        for (res = root->resource_list; res; res = res->next) {
-               do_printk(BIOS_DEBUG,
+               do_printk(debug_level,
                          "%s%s resource base %llx size %llx align %d gran %d 
limit %llx flags %lx index %lx\n",
                          indent, dev_path(root), res->base,
                          res->size, res->align,

-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to