diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2018-03-13 13:57:03 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-03-16 14:56:59 -0400 |
commit | fc22ee215a1385ddaefd01e01975b6a67d9d8072 (patch) | |
tree | f8550afac590ed4eac6c21950659036d646e75dc /include/init.h | |
parent | e2c219cd7103761826f4ca99c905f547ade34c97 (diff) |
common: move board_info.c prototypes in init.h
Move function prototype for common/init/board_init.c
from common.h to init.h
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'include/init.h')
-rw-r--r-- | include/init.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/init.h b/include/init.h index 89e48f2689..d54d519a69 100644 --- a/include/init.h +++ b/include/init.h @@ -163,6 +163,9 @@ int misc_init_r(void); int init_func_vid(void); #endif +/* common/board_info.c */ +int checkboard(void); +int show_board_info(void); #endif /* __ASSEMBLY__ */ /* Put only stuff here that the assembler can digest */ |