[coreboot-gerrit] New patch to review for coreboot: allocator: Demote "missing (read|set)_resources" messages

Nico Huber (nico.h@gmx.de) gerrit at coreboot.org
Wed Oct 21 15:55:18 CEST 2015


Nico Huber (nico.h at gmx.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12110

-gerrit

commit cec094154ffcd2b043de1cdc7e083a3568adc78d
Author: Nico Huber <nico.huber at secunet.com>
Date:   Wed Oct 21 15:18:24 2015 +0200

    allocator: Demote "missing (read|set)_resources" messages
    
    We maybe all have seen many "APIC: 00 missing read_resources" messages
    over the past years. It's obviously not an error, and also doesn't
    likely cause boot failures. Therefore, demote the related messages to
    BIOS_NOTICE.
    
    Change-Id: Ic808f3cf68876d4319c525979db19aae9fcbc561
    Signed-off-by: Nico Huber <nico.huber at secunet.com>
---
 src/device/device.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/device/device.c b/src/device/device.c
index cf418eb..b109dd6 100644
--- a/src/device/device.c
+++ b/src/device/device.c
@@ -222,7 +222,7 @@ static void read_resources(struct bus *bus)
 			continue;
 
 		if (!curdev->ops || !curdev->ops->read_resources) {
-			printk(BIOS_ERR, "%s missing read_resources\n",
+			printk(BIOS_NOTICE, "%s missing read_resources\n",
 			       dev_path(curdev));
 			continue;
 		}
@@ -838,7 +838,7 @@ void assign_resources(struct bus *bus)
 			continue;
 
 		if (!curdev->ops || !curdev->ops->set_resources) {
-			printk(BIOS_ERR, "%s missing set_resources\n",
+			printk(BIOS_NOTICE, "%s missing set_resources\n",
 			       dev_path(curdev));
 			continue;
 		}



More information about the coreboot-gerrit mailing list