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>
This commit is contained in:
Raul E Rangel 2021-11-16 11:14:50 -07:00 committed by Raul Rangel
parent 5e3c454fbb
commit 1d565b500d
1 changed files with 1 additions and 1 deletions

View File

@ -1,10 +1,10 @@
/* SPDX-License-Identifier: GPL-2.0-only */ /* SPDX-License-Identifier: GPL-2.0-only */
#include <arch/cpu.h>
#include <console/console.h> #include <console/console.h>
#include <cpu/intel/hyperthreading.h> #include <cpu/intel/hyperthreading.h>
#include <device/device.h> #include <device/device.h>
#include <option.h> #include <option.h>
#include <smp/spinlock.h>
/* Intel hyper-threading requires serialized CPU init. */ /* Intel hyper-threading requires serialized CPU init. */