diff options
author | Simon Glass | 2019-11-14 12:57:43 -0700 |
---|---|---|
committer | Tom Rini | 2019-12-02 18:25:02 -0500 |
commit | 288b29e44d30afd946724ac577125ea9f80c8aca (patch) | |
tree | 357715f6c9b5bf4202930c0604bc530a928611d9 /board | |
parent | 36bf446b642d5759981f5adf547b4a7aeb15eee3 (diff) |
common: Move command functions out of common.h
Move these functions into the command.h header file which is a better fit.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/engicam/common/board.c | 1 | ||||
-rw-r--r-- | board/gdsys/a38x/keyprogram.c | 1 | ||||
-rw-r--r-- | board/gdsys/p1022/controlcenterd-id.c | 1 | ||||
-rw-r--r-- | board/grinn/liteboard/board.c | 1 | ||||
-rw-r--r-- | board/inversepath/usbarmory/usbarmory.c | 1 | ||||
-rw-r--r-- | board/samsung/common/misc.c | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/board/engicam/common/board.c b/board/engicam/common/board.c index 0c47afe5b56..31ff297b756 100644 --- a/board/engicam/common/board.c +++ b/board/engicam/common/board.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <command.h> #include <env.h> #include <mmc.h> #include <asm/arch/sys_proto.h> diff --git a/board/gdsys/a38x/keyprogram.c b/board/gdsys/a38x/keyprogram.c index 000897984a6..853981aadbb 100644 --- a/board/gdsys/a38x/keyprogram.c +++ b/board/gdsys/a38x/keyprogram.c @@ -5,6 +5,7 @@ */ #include <common.h> +#include <command.h> #include <env.h> #include <tpm-v1.h> #include <malloc.h> diff --git a/board/gdsys/p1022/controlcenterd-id.c b/board/gdsys/p1022/controlcenterd-id.c index d6798bd3382..04d38095665 100644 --- a/board/gdsys/p1022/controlcenterd-id.c +++ b/board/gdsys/p1022/controlcenterd-id.c @@ -11,6 +11,7 @@ #endif #include <common.h> +#include <command.h> #include <dm.h> #include <env.h> #include <malloc.h> diff --git a/board/grinn/liteboard/board.c b/board/grinn/liteboard/board.c index 1558ea4b84f..151041a789e 100644 --- a/board/grinn/liteboard/board.c +++ b/board/grinn/liteboard/board.c @@ -4,6 +4,7 @@ * Copyright (C) 2016 Grinn */ +#include <command.h> #include <asm/arch/clock.h> #include <asm/arch/iomux.h> #include <asm/arch/imx-regs.h> diff --git a/board/inversepath/usbarmory/usbarmory.c b/board/inversepath/usbarmory/usbarmory.c index de4ad832268..19510184d8a 100644 --- a/board/inversepath/usbarmory/usbarmory.c +++ b/board/inversepath/usbarmory/usbarmory.c @@ -8,6 +8,7 @@ */ #include <common.h> +#include <command.h> #include <asm/io.h> #include <asm/arch/imx-regs.h> #include <asm/arch/sys_proto.h> diff --git a/board/samsung/common/misc.c b/board/samsung/common/misc.c index 3ef1e799801..9117669f715 100644 --- a/board/samsung/common/misc.c +++ b/board/samsung/common/misc.c @@ -5,6 +5,7 @@ */ #include <common.h> +#include <command.h> #include <env.h> #include <lcd.h> #include <libtizen.h> |