Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/69624 )
Change subject: lib/malloc.c: Fix log messages ......................................................................
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 ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/69624 Reviewed-by: Eric Lai eric_lai@quanta.corp-partner.google.com Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Felix Held felix-coreboot@felixheld.de --- M src/lib/malloc.c 1 file changed, 18 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Felix Held: Looks good to me, approved Eric Lai: Looks good to me, approved
diff --git a/src/lib/malloc.c b/src/lib/malloc.c index 8ad038a..2c73219 100644 --- a/src/lib/malloc.c +++ b/src/lib/malloc.c @@ -72,7 +72,7 @@ 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; }