diff options
author | Raul E Rangel <rrangel@chromium.org> | 2021-09-10 16:41:00 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-09-13 14:18:43 +0000 |
commit | a96482acd392f514d249b5ca94e11a0767378f9e (patch) | |
tree | 45e1f18644490468717b4468ebd54ea983686fb6 /src | |
parent | b0be267c44c88b9421b09a9b1e40e8d1bfc2b254 (diff) |
arch/x86/boot: Add missing include
This file uses the asmlinkage macro.
BUG=b:179699789
TEST=build guybrush
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Change-Id: Id5b73c174aa946b8205b4172609729b0548cbd8c
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57567
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/x86/boot.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/x86/boot.c b/src/arch/x86/boot.c index 31e7cee4dc..c50ec0e1f1 100644 --- a/src/arch/x86/boot.c +++ b/src/arch/x86/boot.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <arch/boot/boot.h> +#include <arch/cpu.h> #include <commonlib/helpers.h> #include <console/console.h> #include <program_loading.h> |