sdk-hwV1.3/lichee/brandy-2.0/u-boot-2018/include/initcall.h

14 lines
237 B
C
Raw Normal View History

2024-05-07 10:09:20 +00:00
/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright (c) 2011 The Chromium OS Authors.
*/
#ifndef __INITCALL_H
#define __INITCALL_H
typedef int (*init_fnc_t)(void);
int initcall_run_list(const init_fnc_t init_sequence[]);
#endif