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 /drivers/timer | |
parent | b67eefdb6ec9467c41b1c0081f0823bbfff36b00 (diff) | |
download | u-boot-52f24238046ca28085f6de946d0358e5c7c7cbe8.tar.gz u-boot-52f24238046ca28085f6de946d0358e5c7c7cbe8.tar.bz2 u-boot-52f24238046ca28085f6de946d0358e5c7c7cbe8.zip |
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 'drivers/timer')
-rw-r--r-- | drivers/timer/cadence-ttc.c | 1 | ||||
-rw-r--r-- | drivers/timer/rockchip_timer.c | 1 | ||||
-rw-r--r-- | drivers/timer/tsc_timer.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/drivers/timer/cadence-ttc.c b/drivers/timer/cadence-ttc.c index ed48a145f2..4837b0645b 100644 --- a/drivers/timer/cadence-ttc.c +++ b/drivers/timer/cadence-ttc.c @@ -4,6 +4,7 @@ */ #include <common.h> +#include <bootstage.h> #include <dm.h> #include <errno.h> #include <timer.h> diff --git a/drivers/timer/rockchip_timer.c b/drivers/timer/rockchip_timer.c index 54956e557a..0cbdc279a5 100644 --- a/drivers/timer/rockchip_timer.c +++ b/drivers/timer/rockchip_timer.c @@ -4,6 +4,7 @@ */ #include <common.h> +#include <bootstage.h> #include <dm.h> #include <dm/ofnode.h> #include <mapmem.h> diff --git a/drivers/timer/tsc_timer.c b/drivers/timer/tsc_timer.c index 43cb2d820e..04596ff117 100644 --- a/drivers/timer/tsc_timer.c +++ b/drivers/timer/tsc_timer.c @@ -7,6 +7,7 @@ */ #include <common.h> +#include <bootstage.h> #include <dm.h> #include <malloc.h> #include <time.h> |