From 026d7958ba6dc5ed4cd2c5ff507f55f3897cf41a Mon Sep 17 00:00:00 2001 From: Diego Dorta Date: Thu, 5 Oct 2017 09:13:38 -0300 Subject: common: Add a prototype for s_init() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When compiling with W=1 the following warning is observed: arch/arm/mach-imx/mx6/soc.c:590:6: warning: no previous prototype for ‘s_init’ [-Wmissing-prototypes] void s_init(void) Remove this warning by adding the function prototype into include/common.h file. Signed-off-by: Diego Dorta --- include/common.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/common.h') diff --git a/include/common.h b/include/common.h index 4b521e142a9..e14e1daa88b 100644 --- a/include/common.h +++ b/include/common.h @@ -514,6 +514,8 @@ int is_core_valid (unsigned int); */ int arch_cpu_init(void); +void s_init(void); + int checkcpu (void); int checkicache (void); int checkdcache (void); -- cgit v1.2.3