]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/iproc-common/hwinit-common.c
Merge branch 'master' of git://git.denx.de/u-boot-arc
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / iproc-common / hwinit-common.c
1 /*
2  * Copyright 2014 Broadcom Corporation.
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #include <common.h>
8
9 #ifndef CONFIG_SYS_DCACHE_OFF
10 void enable_caches(void)
11 {
12         /* Enable D-cache. I-cache is already enabled in start.S */
13         dcache_enable();
14 }
15 #endif