summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2021-06-29 13:12:19 -0600
committerRaul Rangel <rrangel@chromium.org>2021-07-02 23:13:03 +0000
commitf702705c04963990194c67fb985b6e54da9bb890 (patch)
tree811223353b64837b06b244dfe8d21b01d689be6c
parent43e993b3b05c7ace42c3515bd82d1e5a2539b901 (diff)
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>
-rw-r--r--src/soc/amd/common/block/lpc/espi_util.c2
1 files changed, 1 insertions, 1 deletions
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) {