summaryrefslogtreecommitdiff
path: root/include/common.h
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@st.com>2018-03-09 20:28:12 +0300
committerTom Rini <trini@konsulko.com>2018-03-16 21:54:14 +0300
commitdafa84d27c5f9d160b431665e09697bd392daca9 (patch)
treefd642e53a8910338bf7c2ce4f7274cd1fdeb050f /include/common.h
parent6f6b7cfa89e5aa3b643196a4ccc8b1ba5d6fa7a4 (diff)
downloadu-boot-dafa84d27c5f9d160b431665e09697bd392daca9.tar.xz
common: add a prototype for mach_cpu_init()
Add a new file init.h with the prototype for arch_cpu_init Add a prototype for mach_cpu_init() to avoid a warning: no previous prototype for ‘mach_cpu_init’ It is a first step to move all the functions prototype used during U-Boot initialization (board_f.c / board_r.c) from common.h to init.h Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com> Reviewed-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/include/common.h b/include/common.h
index 0fe9439a93..11e54595b1 100644
--- a/include/common.h
+++ b/include/common.h
@@ -62,6 +62,9 @@ typedef void (interrupt_handler_t)(void *);
#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
#endif
+/* startup functions */
+#include <init.h>
+
/*
* Function Prototypes
*/
@@ -464,16 +467,6 @@ u32 cpu_mask (void);
u32 cpu_dsp_mask(void);
int is_core_valid (unsigned int);
-/**
- * arch_cpu_init() - basic cpu-dependent setup for an architecture
- *
- * This is called after early malloc is available. It should handle any
- * CPU- or SoC- specific init needed to continue the init sequence. See
- * board_f.c for where it is called. If this is not provided, a default
- * version (which does nothing) will be used.
- */
-int arch_cpu_init(void);
-
void s_init(void);
int checkcpu (void);