Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/69622 )
Change subject: commonlib/storage/sdhci.c: Remove "ERROR: " from log message ......................................................................
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 --- M src/commonlib/storage/sdhci.c 1 file changed, 14 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/22/69622/1
diff --git a/src/commonlib/storage/sdhci.c b/src/commonlib/storage/sdhci.c index 16420d9..3a01f62 100644 --- a/src/commonlib/storage/sdhci.c +++ b/src/commonlib/storage/sdhci.c @@ -320,8 +320,7 @@ 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; } }