diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-11-13 08:02:41 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-11-17 13:28:48 +0000 |
commit | 51c311827e5f83e0d62ac03938ca50159aa6aee7 (patch) | |
tree | 7b3d3ab7b0925efbfd757abfaae8920d882f8666 /src/arch/riscv | |
parent | bd5471a0484b5b36afddde7f0d6bd157eb6e3b1d (diff) |
arch/{arm64,riscv}: Remove "CRIT: " from log messages
It is no longer necessary to explicitly add "CRIT: " in front of
BIOS_CRIT message.
Change-Id: I506c1d278960c91d1283e9b1936c9c1678a10e17
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69497
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/arch/riscv')
-rw-r--r-- | src/arch/riscv/fit_payload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/riscv/fit_payload.c b/src/arch/riscv/fit_payload.c index f7f4106cae..bfa0c98d53 100644 --- a/src/arch/riscv/fit_payload.c +++ b/src/arch/riscv/fit_payload.c @@ -67,7 +67,7 @@ bool fit_payload_arch(struct prog *payload, struct fit_config_node *config, void *arg = NULL; if (!config->fdt || !fdt) { - printk(BIOS_CRIT, "CRIT: Providing a valid FDT is mandatory to " + printk(BIOS_CRIT, "Providing a valid FDT is mandatory to " "boot a RISC-V kernel!\n"); return false; /* TODO: Fall back to the ROM FDT? */ |