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/ti | |
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/ti')
-rw-r--r-- | board/ti/am335x/board.c | 1 | ||||
-rw-r--r-- | board/ti/am43xx/board.c | 1 | ||||
-rw-r--r-- | board/ti/am57xx/board.c | 1 | ||||
-rw-r--r-- | board/ti/dra7xx/evm.c | 1 | ||||
-rw-r--r-- | board/ti/ks2_evm/board_k2g.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c index 499c872227b..46b95c78657 100644 --- a/board/ti/am335x/board.c +++ b/board/ti/am335x/board.c @@ -11,6 +11,7 @@ #include <dm.h> #include <env.h> #include <errno.h> +#include <init.h> #include <spl.h> #include <serial.h> #include <asm/arch/cpu.h> diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c index f5ecf871bca..93538309695 100644 --- a/board/ti/am43xx/board.c +++ b/board/ti/am43xx/board.c @@ -10,6 +10,7 @@ #include <common.h> #include <env.h> #include <i2c.h> +#include <init.h> #include <linux/errno.h> #include <spl.h> #include <usb.h> diff --git a/board/ti/am57xx/board.c b/board/ti/am57xx/board.c index 8d1f38971c9..c755821b74f 100644 --- a/board/ti/am57xx/board.c +++ b/board/ti/am57xx/board.c @@ -9,6 +9,7 @@ #include <common.h> #include <env.h> +#include <init.h> #include <palmas.h> #include <sata.h> #include <serial.h> diff --git a/board/ti/dra7xx/evm.c b/board/ti/dra7xx/evm.c index ea8523541f8..04e9b894d54 100644 --- a/board/ti/dra7xx/evm.c +++ b/board/ti/dra7xx/evm.c @@ -11,6 +11,7 @@ */ #include <common.h> #include <env.h> +#include <init.h> #include <palmas.h> #include <sata.h> #include <serial.h> diff --git a/board/ti/ks2_evm/board_k2g.c b/board/ti/ks2_evm/board_k2g.c index 4ff9a44b371..a0fd03a39fb 100644 --- a/board/ti/ks2_evm/board_k2g.c +++ b/board/ti/ks2_evm/board_k2g.c @@ -7,6 +7,7 @@ */ #include <common.h> #include <env.h> +#include <init.h> #include <asm/arch/clock.h> #include <asm/ti-common/keystone_net.h> #include <asm/arch/psc_defs.h> |