xref: /openbmc/u-boot/arch/arc/lib/init_helpers.c (revision 704744f8)
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 DECLARE_GLOBAL_DATA_PTR;
11 
12 int init_cache_f_r(void)
13 {
14 	sync_n_cleanup_cache_all();
15 
16 	return 0;
17 }
18