projects
/
platform
/
kernel
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge tag 'fsl-qoriq-for-v2018.11-rc1' of git://git.denx.de/u-boot-fsl-qoriq
[platform/kernel/u-boot.git]
/
include
/
initcall.h
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