]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/initcall.h
Merge branch 'master' of git://git.denx.de/u-boot-i2c
[thirdparty/u-boot.git] / include / initcall.h
CommitLineData
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
9typedef int (*init_fnc_t)(void);
10
2f43f854 11int initcall_run_list(const init_fnc_t init_sequence[]);
2d986c0f
SG
12
13#endif