diff options
| author | Simon Glass <[email protected]> | 2019-11-14 12:57:43 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-12-02 18:25:02 -0500 |
| commit | 288b29e44d30afd946724ac577125ea9f80c8aca (patch) | |
| tree | 357715f6c9b5bf4202930c0604bc530a928611d9 /arch | |
| 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 <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/mach-kirkwood/cpu.c | 1 | ||||
| -rw-r--r-- | arch/sandbox/cpu/start.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-kirkwood/cpu.c b/arch/arm/mach-kirkwood/cpu.c index 6ad25434386..29c0e592e42 100644 --- a/arch/arm/mach-kirkwood/cpu.c +++ b/arch/arm/mach-kirkwood/cpu.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <command.h> #include <env.h> #include <netdev.h> #include <asm/cache.h> diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c index cfc542c8066..fff9cbdd79d 100644 --- a/arch/sandbox/cpu/start.c +++ b/arch/sandbox/cpu/start.c @@ -4,6 +4,7 @@ */ #include <common.h> +#include <command.h> #include <errno.h> #include <os.h> #include <cli.h> |
