]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/arm/cpu/armv7/kona-common/hwinit-common.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / arch / arm / cpu / armv7 / kona-common / hwinit-common.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
b3134fce
DR
2/*
3 * Copyright 2013 Broadcom Corporation.
b3134fce
DR
4 */
5
6#include <common.h>
1ace4022 7#include <linux/sizes.h>
b3134fce
DR
8
9#ifndef CONFIG_SYS_DCACHE_OFF
10void enable_caches(void)
11{
12 /* Enable D-cache. I-cache is already enabled in start.S */
13 dcache_enable();
14}
15#endif