diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 08:22:48 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 11:02:32 -0400 |
commit | 86e748d946d4c3b0cb867fba2d9367199fb0adfe (patch) | |
tree | f62feb66642047b25a631e0c509e971d56494f6e /include | |
parent | d6d2d0b5e2ab167dad00345aea7b93ec74a7b3e3 (diff) | |
download | u-boot-midas-86e748d946d4c3b0cb867fba2d9367199fb0adfe.tar.gz u-boot-midas-86e748d946d4c3b0cb867fba2d9367199fb0adfe.tar.bz2 u-boot-midas-86e748d946d4c3b0cb867fba2d9367199fb0adfe.zip |
sandbox: Make u-boot-sandbox.h a private header
Rather than including this arch-specific header file in common.h, include
it from within sandbox's u-boot.h header.
Also drop the comment about something to be fixed.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index b07b8fc6da..ffaed49bde 100644 --- a/include/common.h +++ b/include/common.h @@ -434,7 +434,7 @@ static inline int setenv_addr(const char *varname, const void *addr) # include <asm/u-boot-x86.h> #endif /* CONFIG_X86 */ #ifdef CONFIG_SANDBOX -# include <asm/u-boot-sandbox.h> /* TODO(sjg) what needs to be fixed? */ +# include <asm/u-boot.h> #endif #ifdef CONFIG_NDS32 # include <asm/mach-types.h> |