2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2013-03-05 14:39:40 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
|
|
|
*/
|
|
|
|
|
2017-03-28 16:27:17 +00:00
|
|
|
#ifndef __INITCALL_H
|
|
|
|
#define __INITCALL_H
|
|
|
|
|
2013-03-05 14:39:40 +00:00
|
|
|
typedef int (*init_fnc_t)(void);
|
|
|
|
|
2014-05-20 12:01:43 +00:00
|
|
|
int initcall_run_list(const init_fnc_t init_sequence[]);
|
2017-03-28 16:27:17 +00:00
|
|
|
|
|
|
|
#endif
|