From 1d565b500d73f935101e4808f2bd614cec248e13 Mon Sep 17 00:00:00 2001 From: Raul E Rangel Date: Tue, 16 Nov 2021 11:14:50 -0700 Subject: [PATCH] cpu/intel/hyperthreading: Add missing header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This file is using cpuid_result and cpuid(). I also removed the spinlock header since it's not used. This is what was previously providing the cpu.h header. BUG=b:179699789 TEST=none Signed-off-by: Raul E Rangel Change-Id: Idc3daa64562c4a4d57b678f13726509b480ba050 Reviewed-on: https://review.coreboot.org/c/coreboot/+/59356 Tested-by: build bot (Jenkins) Reviewed-by: Felix Held Reviewed-by: Kyösti Mälkki --- src/cpu/intel/hyperthreading/intel_sibling.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpu/intel/hyperthreading/intel_sibling.c b/src/cpu/intel/hyperthreading/intel_sibling.c index 93d29d4d29..9fde031418 100644 --- a/src/cpu/intel/hyperthreading/intel_sibling.c +++ b/src/cpu/intel/hyperthreading/intel_sibling.c @@ -1,10 +1,10 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +#include #include #include #include #include -#include /* Intel hyper-threading requires serialized CPU init. */