diff options
author | Simon Glass | 2017-05-31 19:47:48 -0600 |
---|---|---|
committer | Tom Rini | 2017-06-05 11:02:36 -0400 |
commit | c62db35d52c6ba5f31ac36e690c58ec54b273298 (patch) | |
tree | 52acce23dd2b8d50d28cc4d411201ad22a5e4722 /board/samsung | |
parent | 3a53e99c7de155d8c5e057d9fda1939b60e18a2f (diff) |
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/samsung')
-rw-r--r-- | board/samsung/goni/goni.c | 1 | ||||
-rw-r--r-- | board/samsung/smdkc100/smdkc100.c | 1 | ||||
-rw-r--r-- | board/samsung/universal_c210/universal.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/board/samsung/goni/goni.c b/board/samsung/goni/goni.c index 12593830e99..d0247ac2571 100644 --- a/board/samsung/goni/goni.c +++ b/board/samsung/goni/goni.c @@ -17,6 +17,7 @@ #include <samsung/misc.h> #include <usb.h> #include <usb_mass_storage.h> +#include <asm/mach-types.h> DECLARE_GLOBAL_DATA_PTR; diff --git a/board/samsung/smdkc100/smdkc100.c b/board/samsung/smdkc100/smdkc100.c index 79e127d99ab..5d23844458a 100644 --- a/board/samsung/smdkc100/smdkc100.c +++ b/board/samsung/smdkc100/smdkc100.c @@ -11,6 +11,7 @@ #include <asm/io.h> #include <asm/arch/sromc.h> #include <netdev.h> +#include <asm/mach-types.h> DECLARE_GLOBAL_DATA_PTR; diff --git a/board/samsung/universal_c210/universal.c b/board/samsung/universal_c210/universal.c index feb8a341bef..cc6eaf7ad0f 100644 --- a/board/samsung/universal_c210/universal.c +++ b/board/samsung/universal_c210/universal.c @@ -23,6 +23,7 @@ #include <libtizen.h> #include <samsung/misc.h> #include <usb_mass_storage.h> +#include <asm/mach-types.h> DECLARE_GLOBAL_DATA_PTR; |