From 9d28899f2dfb72529b26dca2a46c6c088c587a41 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Fri, 4 Feb 2022 19:59:20 +0100 Subject: [PATCH] soc/intel/quark/storage_test.c: Remove duplicated "ERROR" in log message Change-Id: I7697512a63b58ca7d7200c74a409822389db0762 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/c/coreboot/+/61636 Tested-by: build bot (Jenkins) Reviewed-by: Raul Rangel --- src/soc/intel/quark/storage_test.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/soc/intel/quark/storage_test.c b/src/soc/intel/quark/storage_test.c index e7e464601c..04c673616d 100644 --- a/src/soc/intel/quark/storage_test.c +++ b/src/soc/intel/quark/storage_test.c @@ -184,8 +184,7 @@ void storage_test(uint32_t bar, int full_initialization) err = sdhci_controller_init(sdhci_ctrlr, (void *)bar); if (err) { display_log(); - printk(BIOS_ERR, - "ERROR - Controller failed to initialize, err = %d\n", + printk(BIOS_ERR, "Controller failed to initialize, err = %d\n", err); return; }