diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-11-09 15:05:23 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-11-10 21:31:18 +0000 |
commit | aba1c945cd44332521df49228b883c7081723812 (patch) | |
tree | 4b0c2c61ba4f222ebe8b48e41c0b038ad0ffd873 /src/commonlib | |
parent | 1d3c2e65724ed92eeef723c1acdc86ba91cbd682 (diff) |
/: Remove "ERROR: "/"WARNING: " prefixes from log messages
It is no longer necessary to explicitly add "ERROR: "/"WARNING: " in
front of every BIOS_ERR/BIOS_WARN message.
Change-Id: I22ee6ae15c3d3a848853c5460b3b3c1795adf2f5
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69405
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/commonlib')
-rw-r--r-- | src/commonlib/fsp_relocate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commonlib/fsp_relocate.c b/src/commonlib/fsp_relocate.c index 8dabad5643..55295cac2d 100644 --- a/src/commonlib/fsp_relocate.c +++ b/src/commonlib/fsp_relocate.c @@ -259,10 +259,10 @@ static int pe_relocate(uintptr_t new_addr, void *pe, void *fsp, size_t fih_off) write_le32(&pe_base[aoff], val + delta); break; case EFI_IMAGE_REL_BASED_DIR64: - printk(BIOS_ERR, "Error: Unsupported DIR64\n"); + printk(BIOS_ERR, "Unsupported DIR64\n"); break; default: - printk(BIOS_ERR, "Error: Unsupported relocation type %d\n", + printk(BIOS_ERR, "Unsupported relocation type %d\n", rtype); return -1; } |