summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2022-06-22 20:35:32 +0530
committerSubrata Banik <subratabanik@google.com>2022-06-26 05:32:54 +0000
commit508c290bb58f845384d1de6d9fb0619d3d46098f (patch)
tree453071f8a27142af8fc7f416b22fa6f09a073b16
parentacd60c9effbd04a9913e78f9afb4d0e545044e51 (diff)
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 <subratabanik@google.com> Change-Id: I714bf74a91c2d783982c5e5ca76a70deed872473 Reviewed-on: https://review.coreboot.org/c/coreboot/+/65316 Reviewed-by: Werner Zeh <werner.zeh@siemens.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/cpu/intel/microcode/microcode.c4
1 files changed, 2 insertions, 2 deletions
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;
}