From fc22ee215a1385ddaefd01e01975b6a67d9d8072 Mon Sep 17 00:00:00 2001 From: Patrick Delaunay Date: Tue, 13 Mar 2018 13:57:03 +0100 Subject: [PATCH] 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 --- include/common.h | 3 +-- include/init.h | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/include/common.h b/include/common.h index 6e7110c3f8..3087505270 100644 --- a/include/common.h +++ b/include/common.h @@ -66,6 +66,7 @@ typedef void (interrupt_handler_t)(void *); * common/board_f.c * common/init/board_init.c * common/board_r.c + * common/board_info.c */ #include @@ -96,8 +97,6 @@ int run_command_repeatable(const char *cmd, int flag); */ int run_command_list(const char *cmd, int len, int flag); -int checkboard(void); -int show_board_info(void); int checkflash(void); int checkdram(void); extern u8 __dtb_dt_begin[]; /* embedded device tree blob */ 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 */ -- 2.25.1