diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2024-05-25 11:17:15 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-05-28 13:27:15 +0000 |
commit | b72f5949ccefe060baf509a8ee2c6a7f0e197d91 (patch) | |
tree | 28b8e3813b449c39520bb00d036e64d748ebebf5 /src/arch/x86 | |
parent | 23e3ea889f62d0052ac8ec4815937344e60cb213 (diff) |
tree: Add smbios_processor_type
Change-Id: I46f799ad255993ac42dab11b5c1d2608daa52b42
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/82645
Reviewed-by: Eric Lai <ericllai@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/smbios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c index a2038b6dea..0338b60d1b 100644 --- a/src/arch/x86/smbios.c +++ b/src/arch/x86/smbios.c @@ -126,7 +126,7 @@ int smbios_write_type4(unsigned long *current, int handle) t->processor_manufacturer = smbios_cpu_vendor(t->eos); t->processor_version = smbios_processor_name(t->eos); t->processor_family = smbios_processor_family(res); - t->processor_type = 3; /* System Processor */ + t->processor_type = SMBIOS_PROCESSOR_TYPE_CENTRAL; /* * If CPUID leaf 11 is available, calculate "core count" by dividing * SMT_ID (logical processors in a core) by Core_ID (number of cores). |