xref: /openbmc/u-boot/arch/arc/lib/init_helpers.c (revision 83d290c56fab2d38cd1ab4c4cc7099559c1d5046)
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