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