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>
This commit is contained in:
Elyes Haouas 2022-11-13 08:02:41 +01:00 committed by Felix Held
parent bd5471a048
commit 51c311827e
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ bool fit_payload_arch(struct prog *payload, struct fit_config_node *config,
void *arg = NULL; void *arg = NULL;
if (!decompress_kernel_header(config->kernel)) { if (!decompress_kernel_header(config->kernel)) {
printk(BIOS_CRIT, "CRIT: Payload doesn't look like an ARM64" printk(BIOS_CRIT, "Payload doesn't look like an ARM64"
" kernel Image.\n"); " kernel Image.\n");
return false; return false;
} }

View File

@ -67,7 +67,7 @@ bool fit_payload_arch(struct prog *payload, struct fit_config_node *config,
void *arg = NULL; void *arg = NULL;
if (!config->fdt || !fdt) { 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"); "boot a RISC-V kernel!\n");
return false; return false;
/* TODO: Fall back to the ROM FDT? */ /* TODO: Fall back to the ROM FDT? */