/: 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>
This commit is contained in:
Elyes Haouas
2022-11-09 15:05:23 +01:00
committed by Felix Held
parent 1d3c2e6572
commit aba1c945cd
16 changed files with 32 additions and 32 deletions

View File

@@ -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;
}