diff options
author | Simon Glass <sjg@chromium.org> | 2014-12-23 12:04:53 -0700 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2015-01-16 14:52:53 -0500 |
commit | 2b7c0f30813d11adeb1ac27bef45688b3dfd9e86 (patch) | |
tree | 38f523d6f9f7b12dcb9f9979d0bccf1b9caf5c4c | |
parent | f630974ccb3ce93e9607a3354e9acb266a8b7e95 (diff) | |
download | u-boot-imx-2b7c0f30813d11adeb1ac27bef45688b3dfd9e86.zip u-boot-imx-2b7c0f30813d11adeb1ac27bef45688b3dfd9e86.tar.gz u-boot-imx-2b7c0f30813d11adeb1ac27bef45688b3dfd9e86.tar.bz2 |
sunxi: Drop use of lowlevel_init()
This does nothing now, so drop it. We have SPL anyway to do our low-level
init.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
-rw-r--r-- | arch/arm/cpu/armv7/sunxi/board.c | 5 | ||||
-rw-r--r-- | include/configs/sunxi-common.h | 1 |
2 files changed, 1 insertions, 5 deletions
diff --git a/arch/arm/cpu/armv7/sunxi/board.c b/arch/arm/cpu/armv7/sunxi/board.c index c4bea25..f4a580a 100644 --- a/arch/arm/cpu/armv7/sunxi/board.c +++ b/arch/arm/cpu/armv7/sunxi/board.c @@ -146,11 +146,6 @@ void reset_cpu(ulong addr) #endif } -/* do some early init */ -void s_init(void) -{ -} - #ifndef CONFIG_SYS_DCACHE_OFF void enable_caches(void) { diff --git a/include/configs/sunxi-common.h b/include/configs/sunxi-common.h index e839053..647cac5 100644 --- a/include/configs/sunxi-common.h +++ b/include/configs/sunxi-common.h @@ -109,6 +109,7 @@ #define CONFIG_SYS_PBSIZE 1024 /* Print Buffer Size */ #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ #define CONFIG_SYS_GENERIC_BOARD +#define CONFIG_SKIP_LOWLEVEL_INIT /* Boot Argument Buffer Size */ #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE |