diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 11:40:00 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-18 17:33:33 -0400 |
commit | 52f24238046ca28085f6de946d0358e5c7c7cbe8 (patch) | |
tree | 960e1e8fd0ab37ccb58817f4acc1dffb018801e8 /arch/x86/cpu | |
parent | b67eefdb6ec9467c41b1c0081f0823bbfff36b00 (diff) | |
download | u-boot-52f24238046ca28085f6de946d0358e5c7c7cbe8.tar.gz |
common: Drop bootstage.h from common header
Move this fairly uncommon header out of the common header.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/cpu')
-rw-r--r-- | arch/x86/cpu/apollolake/fsp_s.c | 1 | ||||
-rw-r--r-- | arch/x86/cpu/apollolake/spl.c | 1 | ||||
-rw-r--r-- | arch/x86/cpu/coreboot/timestamp.c | 1 | ||||
-rw-r--r-- | arch/x86/cpu/cpu.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/cpu/apollolake/fsp_s.c b/arch/x86/cpu/apollolake/fsp_s.c index 7ef169b147..fd6e73dfc8 100644 --- a/arch/x86/cpu/apollolake/fsp_s.c +++ b/arch/x86/cpu/apollolake/fsp_s.c @@ -6,6 +6,7 @@ #include <common.h> #include <binman.h> +#include <bootstage.h> #include <dm.h> #include <irq.h> #include <malloc.h> diff --git a/arch/x86/cpu/apollolake/spl.c b/arch/x86/cpu/apollolake/spl.c index d32f2a9898..a555e6c0d3 100644 --- a/arch/x86/cpu/apollolake/spl.c +++ b/arch/x86/cpu/apollolake/spl.c @@ -5,6 +5,7 @@ #include <common.h> #include <binman_sym.h> +#include <bootstage.h> #include <dm.h> #include <malloc.h> #include <spi.h> diff --git a/arch/x86/cpu/coreboot/timestamp.c b/arch/x86/cpu/coreboot/timestamp.c index e8ccaf2212..0162597809 100644 --- a/arch/x86/cpu/coreboot/timestamp.c +++ b/arch/x86/cpu/coreboot/timestamp.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <bootstage.h> #include <asm/arch/timestamp.h> #include <asm/arch/sysinfo.h> #include <linux/compiler.h> diff --git a/arch/x86/cpu/cpu.c b/arch/x86/cpu/cpu.c index 2e5d0ddd9f..e0f23bb509 100644 --- a/arch/x86/cpu/cpu.c +++ b/arch/x86/cpu/cpu.c @@ -19,6 +19,7 @@ */ #include <common.h> +#include <bootstage.h> #include <command.h> #include <cpu_func.h> #include <dm.h> |