From 96669864bdbda9f75abf3e7845a84921ea95c1a9 Mon Sep 17 00:00:00 2001 From: Wisley Chen Date: Tue, 15 Mar 2022 16:11:32 +0600 Subject: [PATCH] soc/intel/common/block/cse: Change loglevel prefix to WARNING This message is not really an error message, so BIOS_ERR is inappropriate. The message does seem more like a warning though, that the developer could have multiple Kconfigs selected to send EOP, therefore switch to BIOS_WARN instead. BRANCH=firmware-brya-14505.B TEST=build Signed-off-by: Wisley Chen Change-Id: I57a34334007a6a7443302c2f25de3d5c87c85573 Reviewed-on: https://review.coreboot.org/c/coreboot/+/62820 Tested-by: build bot (Jenkins) Reviewed-by: Subrata Banik --- src/soc/intel/common/block/cse/cse_eop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/intel/common/block/cse/cse_eop.c b/src/soc/intel/common/block/cse/cse_eop.c index a8c8bbdfcf..b8b8e36486 100644 --- a/src/soc/intel/common/block/cse/cse_eop.c +++ b/src/soc/intel/common/block/cse/cse_eop.c @@ -204,7 +204,7 @@ static void do_send_end_of_post(void) static bool eop_sent = false; if (eop_sent) { - printk(BIOS_ERR, "EOP already sent\n"); + printk(BIOS_WARNING, "EOP already sent\n"); return; }