init_helpers.h 332 B

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