mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 09:27:35 +00:00
e7f59dea88
Somehow I do not see any inlining with initcalls now. I was sure I saw
it when this commit went in, but now it seems to make things worse.
This reverts commit 47870afab9
.
Signed-off-by: Simon Glass <sjg@chromium.org>
13 lines
237 B
C
13 lines
237 B
C
/* 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
|