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