From dc7485b3613c2f2752291b9b60458a27a9ac81da Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Wed, 21 Dec 2022 16:34:39 +0100 Subject: [PATCH] amd_imc.c: Fix unusual typo in log message Replace a `)` with a `.` for consistency with other log messages. Change-Id: I977990237821f6aec8f127bc3994a1f3f3a0a350 Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/flashrom/+/71184 Reviewed-by: Felix Singer Tested-by: build bot (Jenkins) Reviewed-by: Elyes Haouas Reviewed-by: Edward O'Callaghan --- amd_imc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amd_imc.c b/amd_imc.c index 093d42dc2..d57728e56 100644 --- a/amd_imc.c +++ b/amd_imc.c @@ -122,7 +122,7 @@ static int imc_resume(void *data) int ret = imc_send_cmd(dev, 0xb5); if (ret != 0) - msg_pinfo("Resuming IMC failed)\n"); + msg_pinfo("Resuming IMC failed.\n"); else msg_pdbg2("IMC resumed.\n"); return ret;