From b1bcd5bb8c67c362cd0528689d309cd7c7864393 Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Tue, 15 Nov 2022 09:51:34 +0100 Subject: lib/malloc.c: Fix log messages It is no longer necessary to explicitly add "Warning" in front of BIOS_WARNING message. Change-Id: I6e4341555a3b03a531bd94ba5e36cbcadda9c663 Signed-off-by: Elyes Haouas Reviewed-on: https://review.coreboot.org/c/coreboot/+/69624 Reviewed-by: Eric Lai Tested-by: build bot (Jenkins) Reviewed-by: Felix Held --- src/lib/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/malloc.c b/src/lib/malloc.c index 8ad038af5f..2c7321915b 100644 --- a/src/lib/malloc.c +++ b/src/lib/malloc.c @@ -72,7 +72,7 @@ void free(void *ptr) return; if (ptr < (void *)&_heap || ptr >= free_mem_end_ptr) { - printk(BIOS_WARNING, "Warning - Pointer passed to %s is not " + printk(BIOS_WARNING, "Pointer passed to %s is not " "pointing to the heap\n", __func__); return; } -- cgit v1.2.3