Elyes Haouas has uploaded this change for review.

View Change

arch/{arm64,riscv}: Remove "CRIT: " from log messages

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>
---
M src/arch/arm64/fit_payload.c
M src/arch/riscv/fit_payload.c
2 files changed, 15 insertions(+), 2 deletions(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/97/69497/1
diff --git a/src/arch/arm64/fit_payload.c b/src/arch/arm64/fit_payload.c
index 7f1c8f8..f8ae16a 100644
--- a/src/arch/arm64/fit_payload.c
+++ b/src/arch/arm64/fit_payload.c
@@ -169,7 +169,7 @@
void *arg = NULL;

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");
return false;
}
diff --git a/src/arch/riscv/fit_payload.c b/src/arch/riscv/fit_payload.c
index f7f4106..bfa0c98 100644
--- a/src/arch/riscv/fit_payload.c
+++ b/src/arch/riscv/fit_payload.c
@@ -67,7 +67,7 @@
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? */

To view, visit change 69497. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I506c1d278960c91d1283e9b1936c9c1678a10e17
Gerrit-Change-Number: 69497
Gerrit-PatchSet: 1
Gerrit-Owner: Elyes Haouas <ehaouas@noos.fr>
Gerrit-MessageType: newchange