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>
This commit is contained in:
Jincheng Li 2024-03-15 17:17:58 +08:00 committed by Jérémy Compostella
commit dc68ada3a0
2 changed files with 2 additions and 2 deletions

View file

@ -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);
}
/*