From bd5471a0484b5b36afddde7f0d6bd157eb6e3b1d Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Tue, 15 Nov 2022 09:30:49 +0100 Subject: [PATCH] commonlib/storage/sdhci.c: Remove "ERROR: " from log message It is no longer necessary to explicitly add "ERROR: " in front of BIOS_ERR message. Change-Id: I36e2785ae567d82339212140c1bde0876dfd450d Signed-off-by: Elyes Haouas Reviewed-on: https://review.coreboot.org/c/coreboot/+/69622 Tested-by: build bot (Jenkins) Reviewed-by: Eric Lai --- src/commonlib/storage/sdhci.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/commonlib/storage/sdhci.c b/src/commonlib/storage/sdhci.c index 16420d99fa..3a01f62af1 100644 --- a/src/commonlib/storage/sdhci.c +++ b/src/commonlib/storage/sdhci.c @@ -320,8 +320,7 @@ static int sdhci_send_command(struct sd_mmc_ctrlr *ctrlr, if (!dma_coherent(buf)) { bbstate = &bbstate_val; if (bounce_buffer_start(bbstate, buf, len, bbflags)) { - sdhc_error( - "ERROR: Failed to get bounce buffer.\n"); + sdhc_error("Failed to get bounce buffer.\n"); return -1; } }