Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/36772 )
Change subject: lib/bootmem: Correct error message ......................................................................
lib/bootmem: Correct error message
bootmem_allocate_buffer() displayed "unitialized", this is changed to "uninitialized".
BUG=N/A TEST=build
Change-Id: I84ae689ddb24f3e3d2387735faf3850e6bd6dfa9 Signed-off-by: Wim Vervoorn wvervoorn@eltan.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/36772 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Frans Hendriks fhendriks@eltan.com Reviewed-by: Aaron Durbin adurbin@chromium.org --- M src/lib/bootmem.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Aaron Durbin: Looks good to me, approved Frans Hendriks: Looks good to me, approved
diff --git a/src/lib/bootmem.c b/src/lib/bootmem.c index 45f7fe261..8ca3bbd 100644 --- a/src/lib/bootmem.c +++ b/src/lib/bootmem.c @@ -238,7 +238,7 @@ resource_t end;
if (!bootmem_is_initialized()) { - printk(BIOS_ERR, "%s: lib unitialized!\n", __func__); + printk(BIOS_ERR, "%s: lib uninitialized!\n", __func__); return NULL; }