Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/75876?usp=email )
Change subject: device/resource_allocator_v4: Remove "ERROR: " from log message ......................................................................
device/resource_allocator_v4: Remove "ERROR: " from log message
It is no longer necessary to explicitly add "ERROR: " in front of BIOS_ERR message.
Change-Id: I3ff2081d38f94556481efa02f242795bbfc77517 Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/device/resource_allocator_v4.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/76/75876/1
diff --git a/src/device/resource_allocator_v4.c b/src/device/resource_allocator_v4.c index 0a83d29..71a626a 100644 --- a/src/device/resource_allocator_v4.c +++ b/src/device/resource_allocator_v4.c @@ -405,7 +405,7 @@
if (memranges_steal(ranges, resource->limit, resource->size, resource->align, type_match, &resource->base, allocate_top_down) == false) { - printk(BIOS_ERR, " ERROR: Resource didn't fit!!! "); + printk(BIOS_ERR, " Resource didn't fit!!! "); printk(BIOS_DEBUG, " %s %02lx * size: 0x%llx limit: %llx %s\n", dev_path(dev), resource->index, resource->size, resource->limit, resource2str(resource));