Gitiles
Code Review
Sign In
git01.mediatek.com
/
filogic
/
uboot
/
ac72ba2b2ca118a2f3e9d73403d92ddaf1d07402
/
.
/
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