diff options
author | Felix Held <felix.held@amd.corp-partner.google.com> | 2021-09-17 00:21:12 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-09-17 22:32:29 +0000 |
commit | 4ceef0eccef4082ca794033fb61588532dbc830a (patch) | |
tree | f061c921f1070ab3532172124ebf331c2ad7a673 /src/southbridge/intel | |
parent | ae546ecc27aa0449352e15956fc29fd0d5916403 (diff) |
sb/intel/ibexpeak/early_cir: add missing arch/cpu.h include
Including arch/cpu.h is needed to have the declaration for cpuid_eax,
get_fms and struct cpuinfo_x86.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I18b60f8cf33f71c7215a97ea209b8f8cf66cf42f
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57729
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/southbridge/intel')
-rw-r--r-- | src/southbridge/intel/ibexpeak/early_cir.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/southbridge/intel/ibexpeak/early_cir.c b/src/southbridge/intel/ibexpeak/early_cir.c index 7c19591269..c0f9437a3f 100644 --- a/src/southbridge/intel/ibexpeak/early_cir.c +++ b/src/southbridge/intel/ibexpeak/early_cir.c @@ -1,5 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +#include <arch/cpu.h> #include <console/console.h> #include <device/pci_ops.h> #include <device/pci_def.h> |