]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/initcall.h
Convert CONFIG_BOOTCOUNT_ENV to Kconfig
[people/ms/u-boot.git] / include / initcall.h
CommitLineData
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
10typedef int (*init_fnc_t)(void);
11
2f43f854 12int initcall_run_list(const init_fnc_t init_sequence[]);
2d986c0f
SG
13
14#endif