diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-31 19:47:48 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 11:02:36 -0400 |
commit | c62db35d52c6ba5f31ac36e690c58ec54b273298 (patch) | |
tree | 52acce23dd2b8d50d28cc4d411201ad22a5e4722 /board/toradex | |
parent | 3a53e99c7de155d8c5e057d9fda1939b60e18a2f (diff) | |
download | u-boot-c62db35d52c6ba5f31ac36e690c58ec54b273298.tar.gz |
arm: Add explicit include of <asm/mach-types.h>
Rather than relying on common.h to provide this include, which is going
away at some point, include it explicitly in each file.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/toradex')
-rw-r--r-- | board/toradex/colibri_pxa270/colibri_pxa270.c | 1 | ||||
-rw-r--r-- | board/toradex/common/tdx-cfg-block.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/board/toradex/colibri_pxa270/colibri_pxa270.c b/board/toradex/colibri_pxa270/colibri_pxa270.c index 5d62e66495..85afecff94 100644 --- a/board/toradex/colibri_pxa270/colibri_pxa270.c +++ b/board/toradex/colibri_pxa270/colibri_pxa270.c @@ -19,6 +19,7 @@ #include <netdev.h> #include <serial.h> #include <usb.h> +#include <asm/mach-types.h> #include "../common/tdx-common.h" DECLARE_GLOBAL_DATA_PTR; diff --git a/board/toradex/common/tdx-cfg-block.c b/board/toradex/common/tdx-cfg-block.c index 2a810c89aa..68ec4369ad 100644 --- a/board/toradex/common/tdx-cfg-block.c +++ b/board/toradex/common/tdx-cfg-block.c @@ -23,6 +23,7 @@ #include <malloc.h> #include <mmc.h> #include <nand.h> +#include <asm/mach-types.h> DECLARE_GLOBAL_DATA_PTR; |