summaryrefslogtreecommitdiffstats
path: root/src/device/resource_allocator_v4.c
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2023-06-17 17:06:41 +0200
committerElyes Haouas <ehaouas@noos.fr>2023-06-19 16:34:43 +0000
commit310ef527fb004272a70059fe63c2e89df1a1ad4b (patch)
tree1d9de16c62eb125abfab7b63726b5a2cebf6b4d2 /src/device/resource_allocator_v4.c
parentaec6f06a52621b78922fa172c214ca8d20b466cf (diff)
downloadcoreboot-310ef527fb004272a70059fe63c2e89df1a1ad4b.tar.gz
coreboot-310ef527fb004272a70059fe63c2e89df1a1ad4b.tar.bz2
coreboot-310ef527fb004272a70059fe63c2e89df1a1ad4b.zip
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> Reviewed-on: https://review.coreboot.org/c/coreboot/+/75876 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/device/resource_allocator_v4.c')
-rw-r--r--src/device/resource_allocator_v4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/resource_allocator_v4.c b/src/device/resource_allocator_v4.c
index 0a83d29a2293..b6b9fb9c9309 100644
--- a/src/device/resource_allocator_v4.c
+++ b/src/device/resource_allocator_v4.c
@@ -405,7 +405,7 @@ static void allocate_child_resources(struct bus *bus, struct memranges *ranges,
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));