summaryrefslogtreecommitdiff
path: root/src/cpu/intel/common/hyperthreading.c
diff options
context:
space:
mode:
authorJincheng Li <jincheng.li@intel.com>2024-03-15 17:17:58 +0800
committerJérémy Compostella <jeremy.compostella@intel.com>2024-03-21 20:37:51 +0000
commitdc68ada3a066dcdaba3221bf51a4f98c94bf1b98 (patch)
tree0a511f822c1ea5007817c248185e7fa7ff549e88 /src/cpu/intel/common/hyperthreading.c
parente80d06284f4155228f5e9e368a2b65770b1c9c21 (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/cpu/intel/common/hyperthreading.c')
-rw-r--r--src/cpu/intel/common/hyperthreading.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/intel/common/hyperthreading.c b/src/cpu/intel/common/hyperthreading.c
index 85c4477e1e..d034129780 100644
--- a/src/cpu/intel/common/hyperthreading.c
+++ b/src/cpu/intel/common/hyperthreading.c
@@ -7,7 +7,7 @@
bool intel_ht_supported(void)
{
/* Is HyperThreading supported? */
- return !!(cpuid_edx(1) & CPUID_FEAURE_HTT);
+ return !!(cpuid_edx(1) & CPUID_FEATURE_HTT);
}
/*