diff options
author | Simon Glass <sjg@chromium.org> | 2017-06-01 01:47:48 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 15:02:36 (GMT) |
commit | c62db35d52c6ba5f31ac36e690c58ec54b273298 (patch) | |
tree | 52acce23dd2b8d50d28cc4d411201ad22a5e4722 /board/imx31_phycore | |
parent | 3a53e99c7de155d8c5e057d9fda1939b60e18a2f (diff) | |
download | u-boot-c62db35d52c6ba5f31ac36e690c58ec54b273298.tar.xz |
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/imx31_phycore')
-rw-r--r-- | board/imx31_phycore/imx31_phycore.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/imx31_phycore/imx31_phycore.c b/board/imx31_phycore/imx31_phycore.c index 3f45e4e..6532466 100644 --- a/board/imx31_phycore/imx31_phycore.c +++ b/board/imx31_phycore/imx31_phycore.c @@ -11,6 +11,7 @@ #include <netdev.h> #include <asm/arch/clock.h> #include <asm/arch/imx-regs.h> +#include <asm/mach-types.h> #include <asm/arch/sys_proto.h> DECLARE_GLOBAL_DATA_PTR; |