1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (c) 2011 The Chromium OS Authors. 4 */ 5 6 #ifndef __INITCALL_H 7 #define __INITCALL_H 8 9 typedef int (*init_fnc_t)(void); 10 11 int initcall_run_list(const init_fnc_t init_sequence[]); 12 13 #endif 14