summaryrefslogtreecommitdiffstats
path: root/src/cpu
diff options
context:
space:
mode:
authorFelix Held <felix.held@amd.corp-partner.google.com>2021-09-16 22:05:52 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-09-17 20:28:09 +0000
commit1fb2e1eb42f60f53286ca2268d1e4442cf17f1a5 (patch)
treefa84d584bf03b802b7456173666f7ee6d6380df0 /src/cpu
parent5f12b7b214cb9658fb9d04754fc7d2882b63b4af (diff)
downloadcoreboot-1fb2e1eb42f60f53286ca2268d1e4442cf17f1a5.tar.gz
coreboot-1fb2e1eb42f60f53286ca2268d1e4442cf17f1a5.tar.bz2
coreboot-1fb2e1eb42f60f53286ca2268d1e4442cf17f1a5.zip
cpu: add missing arch/cpu.h includes
Including arch/cpu.h is needed to have the declaration for cpuid_eax. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ic22aba062117e3afa818fa2fc39cb0738e6a1612 Reviewed-on: https://review.coreboot.org/c/coreboot/+/57725 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/amd/pi/00730F01/update_microcode.c1
-rw-r--r--src/cpu/intel/common/fsb.c1
-rw-r--r--src/cpu/intel/slot_1/l2_cache.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/cpu/amd/pi/00730F01/update_microcode.c b/src/cpu/amd/pi/00730F01/update_microcode.c
index 8942f0146a9c..4496bdaac11f 100644
--- a/src/cpu/amd/pi/00730F01/update_microcode.c
+++ b/src/cpu/amd/pi/00730F01/update_microcode.c
@@ -1,6 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <stdint.h>
+#include <arch/cpu.h>
#include <cpu/amd/microcode.h>
#include <commonlib/helpers.h>
#include <console/console.h>
diff --git a/src/cpu/intel/common/fsb.c b/src/cpu/intel/common/fsb.c
index 73939f7e0af2..350e8c693b12 100644
--- a/src/cpu/intel/common/fsb.c
+++ b/src/cpu/intel/common/fsb.c
@@ -1,5 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */
+#include <arch/cpu.h>
#include <cpu/x86/msr.h>
#include <cpu/x86/tsc.h>
#include <cpu/intel/speedstep.h>
diff --git a/src/cpu/intel/slot_1/l2_cache.c b/src/cpu/intel/slot_1/l2_cache.c
index 57d1fd4af035..2a273168f393 100644
--- a/src/cpu/intel/slot_1/l2_cache.c
+++ b/src/cpu/intel/slot_1/l2_cache.c
@@ -24,6 +24,7 @@
*/
#include <stdint.h>
+#include <arch/cpu.h>
#include <console/console.h>
#include <cpu/intel/l2_cache.h>
#include <cpu/x86/cache.h>