Sign in
coral
/
uboot-imx
/
c5f63134db6beebd565e4d6e1eb58500f806c7e7
/
.
/
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