xref: /openbmc/u-boot/arch/arc/lib/init_helpers.c (revision a35747b5)
1 /*
2  * Copyright (C) 2013-2015 Synopsys, Inc. All rights reserved.
3  *
4  * SPDX-License-Identifier:	GPL-2.0+
5  */
6 
7 #include <asm/cache.h>
8 #include <common.h>
9 
10 int init_cache_f_r(void)
11 {
12 	sync_n_cleanup_cache_all();
13 
14 	return 0;
15 }
16