Gitiles
Code Review
Sign In
git01.mediatek.com
/
filogic
/
uboot
/
958eda24eb56edcf16a819bc4ee49975e6dd080b
/
.
/
arch
/
arm
/
cpu
/
armv7
/
iproc-common
/
hwinit-common.c
blob: 8bf06a3e48f060bfacf97f264246ca5a398bb683 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright 2014 Broadcom Corporation.
*/
#include
<common.h>
#ifndef
CONFIG_SYS_DCACHE_OFF
void
enable_caches
(
void
)
{
/* Enable D-cache. I-cache is already enabled in start.S */
dcache_enable
();
}
#endif