mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00: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…
Reference in a new issue