From 508c290bb58f845384d1de6d9fb0619d3d46098f Mon Sep 17 00:00:00 2001 From: Subrata Banik Date: Wed, 22 Jun 2022 20:35:32 +0530 Subject: intel/microcode: Change log type from BIOS_ERR to BIOS_WARNING This patch changes the serial message type to BIOS_WARNING as sometimes it may raise a wrong signal when microcode resides inside other part of the IFWI instead /CBFS. Signed-off-by: Subrata Banik Change-Id: I714bf74a91c2d783982c5e5ca76a70deed872473 Reviewed-on: https://review.coreboot.org/c/coreboot/+/65316 Reviewed-by: Werner Zeh Tested-by: build bot (Jenkins) --- src/cpu/intel/microcode/microcode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cpu/intel/microcode') diff --git a/src/cpu/intel/microcode/microcode.c b/src/cpu/intel/microcode/microcode.c index 2d3fc2e737..829d3b0b00 100644 --- a/src/cpu/intel/microcode/microcode.c +++ b/src/cpu/intel/microcode/microcode.c @@ -95,7 +95,7 @@ void intel_microcode_load_unlocked(const void *microcode_patch) const struct microcode *m = microcode_patch; if (!m) { - printk(BIOS_ERR, "microcode: failed because no ucode was found\n"); + printk(BIOS_WARNING, "microcode: failed because no ucode was found\n"); return; } @@ -269,7 +269,7 @@ void intel_reload_microcode(void) const struct microcode *m = intel_microcode_find(); if (!m) { - printk(BIOS_ERR, "microcode: failed because no ucode was found\n"); + printk(BIOS_WARNING, "microcode: failed because no ucode was found\n"); return; } -- cgit v1.2.3