summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-04-08 13:20:47 -0600
committerSimon Glass <sjg@chromium.org>2019-04-23 20:26:43 -0600
commit315f60d741a7c16bc44cee87668a02054d8f9f08 (patch)
treea1417bd4902591fffc1aa449c3a3360573d736a5
parentb82de17eb2e89d511df293e02bdea517399d02c3 (diff)
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>
-rw-r--r--include/initcall.h11
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;