Attention is currently required from: Patrick Rudolph. Raul Rangel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/59356 )
Change subject: cpu/intel/hyperthreading: Add missing header <arch/cpu.h> ......................................................................
cpu/intel/hyperthreading: Add missing header <arch/cpu.h>
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 rrangel@chromium.org Change-Id: Idc3daa64562c4a4d57b678f13726509b480ba050 --- M src/cpu/intel/hyperthreading/intel_sibling.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/56/59356/1
diff --git a/src/cpu/intel/hyperthreading/intel_sibling.c b/src/cpu/intel/hyperthreading/intel_sibling.c index 93d29d4..9fde031 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 <arch/cpu.h> #include <console/console.h> #include <cpu/intel/hyperthreading.h> #include <device/device.h> #include <option.h> -#include <smp/spinlock.h>
/* Intel hyper-threading requires serialized CPU init. */