1 /* 2 * (C) Copyright 2011 3 * Graeme Russ, <graeme.russ@gmail.com> 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 #ifndef _INIT_HELPERS_H_ 9 #define _INIT_HELPERS_H_ 10 11 /** 12 * init_cache_f_r() - Turn on the cache in preparation for relocation 13 * 14 * @return 0 if OK, -ve on error 15 */ 16 int init_cache_f_r(void); 17 18 #endif /* _INIT_HELPERS_H_ */ 19