diff options
author | Jincheng Li <jincheng.li@intel.com> | 2024-03-15 17:17:58 +0800 |
---|---|---|
committer | Jérémy Compostella <jeremy.compostella@intel.com> | 2024-03-21 20:37:51 +0000 |
commit | dc68ada3a066dcdaba3221bf51a4f98c94bf1b98 (patch) | |
tree | 0a511f822c1ea5007817c248185e7fa7ff549e88 /src/arch/x86 | |
parent | e80d06284f4155228f5e9e368a2b65770b1c9c21 (diff) |
arch/x86: Fix typo for macro CPUID_FEATURE_HTT
Change-Id: I9b29233e75483cda6bf7723cf79632f6b04233b0
Signed-off-by: Jincheng Li <jincheng.li@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81260
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/include/arch/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/include/arch/cpu.h b/src/arch/x86/include/arch/cpu.h index fa0d5f4678..cfffac096a 100644 --- a/src/arch/x86/include/arch/cpu.h +++ b/src/arch/x86/include/arch/cpu.h @@ -49,7 +49,7 @@ static inline unsigned int cpuid_get_max_func(void) #define CPUID_FEATURE_PAE (1 << 6) #define CPUID_FEATURE_PSE36 (1 << 17) -#define CPUID_FEAURE_HTT (1 << 28) +#define CPUID_FEATURE_HTT (1 << 28) /* Structured Extended Feature Flags */ #define CPUID_STRUCT_EXTENDED_FEATURE_FLAGS 0x7 |