projects
/
platform
/
kernel
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' of git://git.denx.de/u-boot-spi
[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