Blame view

include/initcall.h 237 Bytes
c8a311d9d   Simon Glass   Introduce a basic...
1
2
3
  /*
   * Copyright (c) 2011 The Chromium OS Authors.
   *
1a4596601   Wolfgang Denk   Add GPL-2.0+ SPDX...
4
   * SPDX-License-Identifier:	GPL-2.0+
c8a311d9d   Simon Glass   Introduce a basic...
5
   */
2d986c0f5   Simon Glass   board_f: initcall...
6
7
  #ifndef __INITCALL_H
  #define __INITCALL_H
c8a311d9d   Simon Glass   Introduce a basic...
8
  typedef int (*init_fnc_t)(void);
2f43f8546   Simon Glass   initcall: Improve...
9
  int initcall_run_list(const init_fnc_t init_sequence[]);
2d986c0f5   Simon Glass   board_f: initcall...
10
11
  
  #endif