[coreboot-gerrit] Patch set updated for coreboot: allocator: Demote "missing (read|set)_resources" messages

Nico Huber (nico.h@gmx.de) gerrit at coreboot.org
Wed Oct 21 19:24:58 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 6a78498da45096f03ebbd2bab221f4b33d5e1a86
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_WARNING.
    
    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..d4fafc9 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_WARNING, "%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_WARNING, "%s missing set_resources\n",
 			       dev_path(curdev));
 			continue;
 		}



More information about the coreboot-gerrit mailing list