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>
This commit is contained in:
parent
336a06f2d1
commit
bd5471a048
|
@ -320,8 +320,7 @@ static int sdhci_send_command(struct sd_mmc_ctrlr *ctrlr,
|
||||||
if (!dma_coherent(buf)) {
|
if (!dma_coherent(buf)) {
|
||||||
bbstate = &bbstate_val;
|
bbstate = &bbstate_val;
|
||||||
if (bounce_buffer_start(bbstate, buf, len, bbflags)) {
|
if (bounce_buffer_start(bbstate, buf, len, bbflags)) {
|
||||||
sdhc_error(
|
sdhc_error("Failed to get bounce buffer.\n");
|
||||||
"ERROR: Failed to get bounce buffer.\n");
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue