blob: 01f3f2833f10291429049ec346b407d405b97954 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassc8a311d2013-03-05 14:39:40 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glassc8a311d2013-03-05 14:39:40 +00004 */
5
Simon Glass2d986c02017-03-28 10:27:17 -06006#ifndef __INITCALL_H
7#define __INITCALL_H
8
Simon Glassc8a311d2013-03-05 14:39:40 +00009typedef int (*init_fnc_t)(void);
10
Simon Glass2f43f852014-05-20 06:01:43 -060011int initcall_run_list(const init_fnc_t init_sequence[]);
Simon Glass2d986c02017-03-28 10:27:17 -060012
13#endif