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