2011-12-23 05:51:29 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2011
|
|
|
|
* Graeme Russ, <graeme.russ@gmail.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-12-23 05:51:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INIT_HELPERS_H_
|
|
|
|
#define _INIT_HELPERS_H_
|
|
|
|
|
2017-03-31 14:40:37 +00:00
|
|
|
/**
|
|
|
|
* init_cache_f_r() - Turn on the cache in preparation for relocation
|
|
|
|
*
|
|
|
|
* @return 0 if OK, -ve on error
|
|
|
|
*/
|
2011-12-23 10:14:22 +00:00
|
|
|
int init_cache_f_r(void);
|
2011-12-23 05:51:29 +00:00
|
|
|
|
2017-03-31 14:40:37 +00:00
|
|
|
#endif /* _INIT_HELPERS_H_ */
|