diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:46 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:25:21 -0500 |
commit | 5255932f0167c502fc7fce527bfe7e81df3322f9 (patch) | |
tree | 3d6c908ed81ec0f8a6ca529198765cb64eefbaf3 /board/xes | |
parent | 67c4e9f815eb75ba5c1f86213eded93c4e06e64b (diff) |
common: Move some board functions out of common.h
A number of board function belong in init.h with the others. Move them.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/xes')
-rw-r--r-- | board/xes/xpedite517x/xpedite517x.c | 1 | ||||
-rw-r--r-- | board/xes/xpedite520x/xpedite520x.c | 1 | ||||
-rw-r--r-- | board/xes/xpedite537x/xpedite537x.c | 1 | ||||
-rw-r--r-- | board/xes/xpedite550x/xpedite550x.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/board/xes/xpedite517x/xpedite517x.c b/board/xes/xpedite517x/xpedite517x.c index 0d8fba851d..4164493277 100644 --- a/board/xes/xpedite517x/xpedite517x.c +++ b/board/xes/xpedite517x/xpedite517x.c @@ -4,6 +4,7 @@ */ #include <common.h> +#include <init.h> #include <asm/processor.h> #include <fsl_ddr_sdram.h> #include <asm/mmu.h> diff --git a/board/xes/xpedite520x/xpedite520x.c b/board/xes/xpedite520x/xpedite520x.c index 8daa18e97c..5a4a36cad1 100644 --- a/board/xes/xpedite520x/xpedite520x.c +++ b/board/xes/xpedite520x/xpedite520x.c @@ -6,6 +6,7 @@ #include <common.h> #include <command.h> +#include <init.h> #include <pci.h> #include <asm/processor.h> #include <asm/immap_85xx.h> diff --git a/board/xes/xpedite537x/xpedite537x.c b/board/xes/xpedite537x/xpedite537x.c index 8776a02302..4842096c24 100644 --- a/board/xes/xpedite537x/xpedite537x.c +++ b/board/xes/xpedite537x/xpedite537x.c @@ -5,6 +5,7 @@ #include <common.h> #include <command.h> +#include <init.h> #include <asm/processor.h> #include <asm/mmu.h> #include <asm/immap_85xx.h> diff --git a/board/xes/xpedite550x/xpedite550x.c b/board/xes/xpedite550x/xpedite550x.c index 378e5b67ff..6ee70d6d29 100644 --- a/board/xes/xpedite550x/xpedite550x.c +++ b/board/xes/xpedite550x/xpedite550x.c @@ -5,6 +5,7 @@ #include <common.h> #include <command.h> +#include <init.h> #include <asm/processor.h> #include <asm/mmu.h> #include <asm/immap_85xx.h> |