diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 08:22:57 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 11:02:36 -0400 |
commit | 3a53e99c7de155d8c5e057d9fda1939b60e18a2f (patch) | |
tree | 745412c21100d52e8823a80388a28bcb46d7a69c | |
parent | 3ff240c92f516841d8aff3b7d9268763711f2afd (diff) | |
download | u-boot-3a53e99c7de155d8c5e057d9fda1939b60e18a2f.tar.gz |
nds32: Remove include files from common.h
With a few tweaks we can avoid including these files, which are only
needed by two C files.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | arch/nds32/lib/bootm.c | 1 | ||||
-rw-r--r-- | board/AndesTech/adp-ag101p/adp-ag101p.c | 2 | ||||
-rw-r--r-- | include/common.h | 5 |
3 files changed, 3 insertions, 5 deletions
diff --git a/arch/nds32/lib/bootm.c b/arch/nds32/lib/bootm.c index 4c95a418a8..21aadf284f 100644 --- a/arch/nds32/lib/bootm.c +++ b/arch/nds32/lib/bootm.c @@ -12,6 +12,7 @@ #include <u-boot/zlib.h> #include <asm/byteorder.h> #include <asm/bootm.h> +#include <asm/setup.h> DECLARE_GLOBAL_DATA_PTR; diff --git a/board/AndesTech/adp-ag101p/adp-ag101p.c b/board/AndesTech/adp-ag101p/adp-ag101p.c index a462941448..79608f4efe 100644 --- a/board/AndesTech/adp-ag101p/adp-ag101p.c +++ b/board/AndesTech/adp-ag101p/adp-ag101p.c @@ -11,6 +11,8 @@ #include <netdev.h> #endif #include <linux/io.h> +#include <asm/io.h> +#include <asm/mach-types.h> #include <faraday/ftsdc010.h> #include <faraday/ftsmc020.h> diff --git a/include/common.h b/include/common.h index 02fda57f85..c5cb65beda 100644 --- a/include/common.h +++ b/include/common.h @@ -430,11 +430,6 @@ static inline int setenv_addr(const char *varname, const void *addr) # include <asm/setup.h> # include <asm/u-boot.h> #endif /* CONFIG_ARM */ -#ifdef CONFIG_NDS32 -# include <asm/mach-types.h> -# include <asm/setup.h> -# include <asm/u-boot.h> -#endif /* CONFIG_NDS32 */ #ifdef CONFIG_AUTO_COMPLETE int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf); |