diff options
author | Wim Vervoorn <wvervoorn@eltan.com> | 2019-11-12 11:15:23 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-11-12 18:29:16 +0000 |
commit | 87c52809b2b6208ba51fea3ec379fdb6bacf250f (patch) | |
tree | 409f747e939883eaf00fe67d731ea041e2f40a3e /src/lib | |
parent | c6872f5524c70087d83d97f45bfbe55f1989f2d6 (diff) |
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>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/bootmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/bootmem.c b/src/lib/bootmem.c index 45f7fe261d..8ca3bbd3f6 100644 --- a/src/lib/bootmem.c +++ b/src/lib/bootmem.c @@ -238,7 +238,7 @@ void *bootmem_allocate_buffer(size_t size) 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; } |