summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/common/block/cse
diff options
context:
space:
mode:
authorWisley Chen <wisley.chen@quanta.corp-partner.google.com>2022-03-15 16:11:32 +0600
committerSubrata Banik <subratabanik@google.com>2022-03-18 04:56:35 +0000
commit96669864bdbda9f75abf3e7845a84921ea95c1a9 (patch)
tree5e11011a1efd1e2ad7fb762f22f0d974b83cec76 /src/soc/intel/common/block/cse
parent0e11af1a2d76e831e17ba77afc05906b562cdb8c (diff)
downloadcoreboot-96669864bdbda9f75abf3e7845a84921ea95c1a9.tar.gz
coreboot-96669864bdbda9f75abf3e7845a84921ea95c1a9.tar.bz2
coreboot-96669864bdbda9f75abf3e7845a84921ea95c1a9.zip
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 <wisley.chen@quanta.corp-partner.google.com> Change-Id: I57a34334007a6a7443302c2f25de3d5c87c85573 Reviewed-on: https://review.coreboot.org/c/coreboot/+/62820 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subratabanik@google.com>
Diffstat (limited to 'src/soc/intel/common/block/cse')
-rw-r--r--src/soc/intel/common/block/cse/cse_eop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/cse/cse_eop.c b/src/soc/intel/common/block/cse/cse_eop.c
index a8c8bbdfcf6d..b8b8e36486be 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;
}