soc/intel/xeon_sp/cpx: Align Cooper Lake CPUID as per EDS

This patch removes leading zero from CPUIDs as below:
0x05065a -> 0x5065a
0x05065b -> 0x5065b

Change-Id: I240a06e3b3d7e3dc080f9a9ed1539fadc982495d
Signed-off-by: Subrata Banik <subrata.banik@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56332
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: EricR Lai <ericr_lai@compal.corp-partner.google.com>
This commit is contained in:
Subrata Banik 2021-07-15 14:17:39 +05:30
parent f7100eb1c9
commit 647a7bb777
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@
#include <device/device.h>
#include <cpu/x86/msr.h>
#define CPUID_COOPERLAKE_SP_A0 0x05065a
#define CPUID_COOPERLAKE_SP_A1 0x05065b
#define CPUID_COOPERLAKE_SP_A0 0x5065a
#define CPUID_COOPERLAKE_SP_A1 0x5065b
void cpx_init_cpus(struct device *dev);