commit | e7d7a01670d65cb34c08e3016526da9cd990f00e | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Thu Jan 21 19:45:06 2016 -0700 |
committer | Simon Glass <sjg@chromium.org> | Thu Jan 21 20:42:36 2016 -0700 |
tree | 55c5e625456573d05bbfbe2dfe971d765875393b | |
parent | e421bb804088279514dd36a5c529f64511e5dc54 [diff] [blame] |
rockchip: Don't skip low-level init At present the low-level init is skipped on rockchip. Among other things this means that the instruction cache is left disabled. Fix this. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/arch/arm/mach-rockchip/board.c b/arch/arm/mach-rockchip/board.c index f026abf..380aa91 100644 --- a/arch/arm/mach-rockchip/board.c +++ b/arch/arm/mach-rockchip/board.c
@@ -45,3 +45,7 @@ dcache_enable(); } #endif + +void lowlevel_init(void) +{ +}