diff options
author | Shuo Liu <shuo.liu@intel.com> | 2024-05-07 00:06:08 +0800 |
---|---|---|
committer | Lean Sheng Tan <sheng.tan@9elements.com> | 2024-05-07 09:26:20 +0000 |
commit | 111bf46f7b579ea67f23a7caa570f3535edadffe (patch) | |
tree | df7736ca73caf2fb7592bb821cf7bc18c4fac1af /src | |
parent | 13a3c3a144393b2fe281b9b3ca7a5724d3fdda61 (diff) |
soc/intel/xeon_sp/spr: Remove duplicated warning
When microcode is not found, intel_microcode_find() will output warning
and skip the update. Remove the duplicated warning in CPU codes.
TEST=Build and boot on intel/archercity CRB
Change-Id: I0264edc01e90186a7b77d57f9c147d3b73747437
Signed-off-by: Shuo Liu <shuo.liu@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/82194
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/xeon_sp/spr/cpu.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/soc/intel/xeon_sp/spr/cpu.c b/src/soc/intel/xeon_sp/spr/cpu.c index 15cb84642d..5014a1378c 100644 --- a/src/soc/intel/xeon_sp/spr/cpu.c +++ b/src/soc/intel/xeon_sp/spr/cpu.c @@ -268,10 +268,6 @@ void mp_init_cpus(struct bus *bus) chip_config = bus->dev->chip_info; microcode_patch = intel_microcode_find(); - - if (!microcode_patch) - printk(BIOS_ERR, "microcode not found in CBFS!\n"); - intel_microcode_load_unlocked(microcode_patch); if (mp_init_with_smm(bus, &mp_ops) < 0) |