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