soc/amd/common/espi: Fix debug message log level

BUG=none
TEST=Boot with CONSOLE_LOGLEVEL_3 and no longer see the message printed.

Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Change-Id: I0bdb92f547ceb8be624521211f4a3b94a91dae22
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55972
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Raul E Rangel 2021-06-29 13:12:19 -06:00 committed by Raul Rangel
parent 43e993b3b0
commit f702705c04
1 changed files with 1 additions and 1 deletions

View File

@ -482,7 +482,7 @@ static int espi_send_command(const struct espi_cmd *cmd)
uint32_t status;
if (CONFIG(ESPI_DEBUG))
printk(BIOS_ERR, "eSPI cmd0-cmd2: %08x %08x %08x data: %08x.\n",
printk(BIOS_DEBUG, "eSPI cmd0-cmd2: %08x %08x %08x data: %08x.\n",
cmd->hdr0.val, cmd->hdr1.val, cmd->hdr2.val, cmd->data.val);
if (espi_wait_ready() == -1) {