nt9856x/rtos/BSP/u-boot/arch/arm/cpu/armv7/iproc-common/hwinit-common.c
2023-03-28 15:07:53 +08:00

15 lines
251 B
C

// 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