From f702705c04963990194c67fb985b6e54da9bb890 Mon Sep 17 00:00:00 2001 From: Raul E Rangel Date: Tue, 29 Jun 2021 13:12:19 -0600 Subject: [PATCH] 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 Change-Id: I0bdb92f547ceb8be624521211f4a3b94a91dae22 Reviewed-on: https://review.coreboot.org/c/coreboot/+/55972 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/soc/amd/common/block/lpc/espi_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/amd/common/block/lpc/espi_util.c b/src/soc/amd/common/block/lpc/espi_util.c index e698c8cc48..ebc8f45979 100644 --- a/src/soc/amd/common/block/lpc/espi_util.c +++ b/src/soc/amd/common/block/lpc/espi_util.c @@ -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) {