diff options
author | Simon Glass | 2019-11-14 12:57:46 -0700 |
---|---|---|
committer | Tom Rini | 2019-12-02 18:25:21 -0500 |
commit | 5255932f0167c502fc7fce527bfe7e81df3322f9 (patch) | |
tree | 3d6c908ed81ec0f8a6ca529198765cb64eefbaf3 /board/gdsys | |
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/gdsys')
-rw-r--r-- | board/gdsys/a38x/controlcenterdc.c | 1 | ||||
-rw-r--r-- | board/gdsys/mpc8308/gazerbeam.c | 1 | ||||
-rw-r--r-- | board/gdsys/mpc8308/mpc8308.c | 1 | ||||
-rw-r--r-- | board/gdsys/p1022/controlcenterd.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/board/gdsys/a38x/controlcenterdc.c b/board/gdsys/a38x/controlcenterdc.c index 9e448fcd10d..4eb7d76660e 100644 --- a/board/gdsys/a38x/controlcenterdc.c +++ b/board/gdsys/a38x/controlcenterdc.c @@ -6,6 +6,7 @@ #include <common.h> #include <dm.h> +#include <init.h> #include <miiphy.h> #include <tpm-v1.h> #include <asm/io.h> diff --git a/board/gdsys/mpc8308/gazerbeam.c b/board/gdsys/mpc8308/gazerbeam.c index ddd6ee89538..8c9636d292e 100644 --- a/board/gdsys/mpc8308/gazerbeam.c +++ b/board/gdsys/mpc8308/gazerbeam.c @@ -11,6 +11,7 @@ #include <env.h> #include <fdt_support.h> #include <fsl_esdhc.h> +#include <init.h> #include <miiphy.h> #include <misc.h> #include <tpm-v1.h> diff --git a/board/gdsys/mpc8308/mpc8308.c b/board/gdsys/mpc8308/mpc8308.c index ae77fc2fd12..d4108457d92 100644 --- a/board/gdsys/mpc8308/mpc8308.c +++ b/board/gdsys/mpc8308/mpc8308.c @@ -6,6 +6,7 @@ #include <common.h> #include <command.h> +#include <init.h> #include <asm/processor.h> #include <asm/io.h> #include <asm/global_data.h> diff --git a/board/gdsys/p1022/controlcenterd.c b/board/gdsys/p1022/controlcenterd.c index 6eb3d6c5d06..8e868165ed6 100644 --- a/board/gdsys/p1022/controlcenterd.c +++ b/board/gdsys/p1022/controlcenterd.c @@ -24,6 +24,7 @@ #include <common.h> #include <command.h> #include <env.h> +#include <init.h> #include <pci.h> #include <asm/processor.h> #include <asm/mmu.h> |