diff options
-rw-r--r-- | board/st/stih410-b2260/board.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/board/st/stih410-b2260/board.c b/board/st/stih410-b2260/board.c index 1e7d4217d3..92b0695593 100644 --- a/board/st/stih410-b2260/board.c +++ b/board/st/stih410-b2260/board.c @@ -24,6 +24,14 @@ int dram_init_banksize(void) return 0; } +#ifndef CONFIG_SYS_DCACHE_OFF +void enable_caches(void) +{ + /* Enable D-cache. I-cache is already enabled in start.S */ + dcache_enable(); +} +#endif + int board_init(void) { return 0; |