diff options
author | Simon Glass | 2016-01-21 19:45:06 -0700 |
---|---|---|
committer | Simon Glass | 2016-01-21 20:42:36 -0700 |
commit | ad443b72909c4c68be4131f8b7af49fd7a89d793 (patch) | |
tree | 55c5e625456573d05bbfbe2dfe971d765875393b /arch/arm | |
parent | 7b7ad5c31c91f84ae12b9a7ec850b5d0f720e19b (diff) |
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>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-rockchip/board.c | 4 | ||||
-rw-r--r-- | arch/arm/mach-rockchip/rk3288-board-spl.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/mach-rockchip/board.c b/arch/arm/mach-rockchip/board.c index f026abf0b16..380aa91a28b 100644 --- a/arch/arm/mach-rockchip/board.c +++ b/arch/arm/mach-rockchip/board.c @@ -45,3 +45,7 @@ void enable_caches(void) dcache_enable(); } #endif + +void lowlevel_init(void) +{ +} diff --git a/arch/arm/mach-rockchip/rk3288-board-spl.c b/arch/arm/mach-rockchip/rk3288-board-spl.c index b2c57292a75..f61eeabf449 100644 --- a/arch/arm/mach-rockchip/rk3288-board-spl.c +++ b/arch/arm/mach-rockchip/rk3288-board-spl.c @@ -270,3 +270,7 @@ err: /* No way to report error here */ hang(); } + +void lowlevel_init(void) +{ +} |