summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-11-15 09:30:49 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-11-17 13:28:30 +0000
commitbd5471a0484b5b36afddde7f0d6bd157eb6e3b1d (patch)
tree6b26d9b573fcf7b8f22772f5f18cecd74cf3c6a0
parent336a06f2d16ce660e80f558653da1e5bff992117 (diff)
downloadcoreboot-bd5471a0484b5b36afddde7f0d6bd157eb6e3b1d.tar.gz
coreboot-bd5471a0484b5b36afddde7f0d6bd157eb6e3b1d.tar.bz2
coreboot-bd5471a0484b5b36afddde7f0d6bd157eb6e3b1d.zip
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 <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69622 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
-rw-r--r--src/commonlib/storage/sdhci.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/commonlib/storage/sdhci.c b/src/commonlib/storage/sdhci.c
index 16420d99fa9d..3a01f62af175 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;
}
}