mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-02-23 20:49:56 +01:00
ARM: uniphier: revive accidentally removed dcache_disable()
Commita8e6300d48("ARM: uniphier: refactor spl_init_board()") accidentally dropped dcache_disable() call. Since then, the SPL of LD11 and LD20 failed to load U-Boot proper. Fixes:a8e6300d48("ARM: uniphier: refactor spl_init_board()") Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
b24cf8540a
commit
14bb7a4e37
1 changed files with 4 additions and 0 deletions
|
|
@ -168,4 +168,8 @@ void spl_board_init(void)
|
|||
pr_err("failed to init DRAM\n");
|
||||
hang();
|
||||
}
|
||||
|
||||
#ifdef CONFIG_ARM64
|
||||
dcache_disable();
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue