Skip to content
Snippets Groups Projects
Commit 026d7958 authored by Diego Dorta's avatar Diego Dorta Committed by Tom Rini
Browse files

common: Add a prototype for s_init()


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: default avatarDiego Dorta <diego.dorta@nxp.com>
parent a6e98104
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment