diff options
author | Simon Glass | 2020-05-10 11:40:00 -0600 |
---|---|---|
committer | Tom Rini | 2020-05-18 17:33:33 -0400 |
commit | 52f24238046ca28085f6de946d0358e5c7c7cbe8 (patch) | |
tree | 960e1e8fd0ab37ccb58817f4acc1dffb018801e8 /arch/arm | |
parent | b67eefdb6ec9467c41b1c0081f0823bbfff36b00 (diff) |
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/arm')
-rw-r--r-- | arch/arm/cpu/armv8/generic_timer.c | 1 | ||||
-rw-r--r-- | arch/arm/lib/bootm.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv8/generic_timer.c b/arch/arm/cpu/armv8/generic_timer.c index 46e63294fef..6fe3ede387b 100644 --- a/arch/arm/cpu/armv8/generic_timer.c +++ b/arch/arm/cpu/armv8/generic_timer.c @@ -5,6 +5,7 @@ */ #include <common.h> +#include <bootstage.h> #include <command.h> #include <time.h> #include <asm/system.h> diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c index dc845a997f4..c189bdcf9a0 100644 --- a/arch/arm/lib/bootm.c +++ b/arch/arm/lib/bootm.c @@ -12,6 +12,7 @@ */ #include <common.h> +#include <bootstage.h> #include <command.h> #include <cpu_func.h> #include <dm.h> |