diff options
author | Raul E Rangel <rrangel@chromium.org> | 2021-11-16 11:14:50 -0700 |
---|---|---|
committer | Raul Rangel <rrangel@chromium.org> | 2021-11-22 16:59:45 +0000 |
commit | 1d565b500d73f935101e4808f2bd614cec248e13 (patch) | |
tree | d0fe0fc41704c8d15faf1663a37ffcf8f82f6100 /src | |
parent | 5e3c454fbb7524715186ef7ad32e65fa9279aa4b (diff) |
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
Reviewed-on: https://review.coreboot.org/c/coreboot/+/59356
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/cpu/intel/hyperthreading/intel_sibling.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 <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. */ |