diff options
author | Simon Glass <sjg@chromium.org> | 2019-04-08 13:20:47 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-04-23 20:26:43 -0600 |
commit | 315f60d741a7c16bc44cee87668a02054d8f9f08 (patch) | |
tree | a1417bd4902591fffc1aa449c3a3360573d736a5 /include/initcall.h | |
parent | b82de17eb2e89d511df293e02bdea517399d02c3 (diff) | |
download | u-boot-315f60d741a7c16bc44cee87668a02054d8f9f08.tar.gz |
initcall: Drop use of header files
This file should not include header files. They have already been included
by the time initcall.h is included. Also, document how to enable debugging
in this file.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/initcall.h')
-rw-r--r-- | include/initcall.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/initcall.h b/include/initcall.h index a38c83efa4..78d15afe69 100644 --- a/include/initcall.h +++ b/include/initcall.h @@ -8,12 +8,11 @@ typedef int (*init_fnc_t)(void); -#include <common.h> -#include <initcall.h> -#include <efi.h> - -DECLARE_GLOBAL_DATA_PTR; - +/* + * To enable debugging. add #define DEBUG at the top of the including file. + * + * To find a symbol, use grep on u-boot.map + */ static inline int initcall_run_list(const init_fnc_t init_sequence[]) { const init_fnc_t *init_fnc_ptr; |