Blame view

include/init_helpers.h 332 Bytes
d47ab0ecd   Graeme Russ   x86: Split init f...
1
2
3
4
  /*
   * (C) Copyright 2011
   * Graeme Russ, <graeme.russ@gmail.com>
   *
1a4596601   Wolfgang Denk   Add GPL-2.0+ SPDX...
5
   * SPDX-License-Identifier:	GPL-2.0+
d47ab0ecd   Graeme Russ   x86: Split init f...
6
7
8
9
   */
  
  #ifndef _INIT_HELPERS_H_
  #define _INIT_HELPERS_H_
96d4b75c0   Simon Glass   board_f: Make ini...
10
11
12
13
14
  /**
   * init_cache_f_r() - Turn on the cache in preparation for relocation
   *
   * @return 0 if OK, -ve on error
   */
a1d57b7ab   Graeme Russ   x86: Convert boar...
15
  int init_cache_f_r(void);
d47ab0ecd   Graeme Russ   x86: Split init f...
16

96d4b75c0   Simon Glass   board_f: Make ini...
17
  #endif	/* _INIT_HELPERS_H_ */