summaryrefslogtreecommitdiff
path: root/include/init.h
Commit message (Collapse)AuthorAgeFilesLines
* common: move init_helpers.h prototypes in init.hPatrick Delaunay2018-03-161-0/+7
| | | | | | | | Merge init_helpers.h in the new file init.h with only prototypes for init_cache_f_r used in common/board_f.c Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
* common: move board_info.c prototypes in init.hPatrick Delaunay2018-03-161-0/+3
| | | | | | | Move function prototype for common/init/board_init.c from common.h to init.h Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
* common: move board_r.c prototypes in init.hPatrick Delaunay2018-03-161-0/+14
| | | | | | | Move function prototypes used in common/board_r.c from common.h to init.h Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
* common: move board_init.c prototypes in init.hPatrick Delaunay2018-03-161-0/+39
| | | | | | | Move function prototypes for common/init/board_init.c from common.h to init.h Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
* common: move board_f.c prototypes in init.hPatrick Delaunay2018-03-161-0/+66
| | | | | | | | | Move prototypes for function used in common/board_f.c from common.h to init.h Remove weak for arch_reserve_stacks in prototype (checkpatch issue) Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
* common: add a prototype for mach_cpu_init()Patrick Delaunay2018-03-161-0/+51
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>