From: Diego Dorta Date: Thu, 21 Sep 2017 18:10:03 +0000 (-0300) Subject: imx: sys_proto: Add a prototype for board_mmc_get_env_dev() X-Git-Tag: v2017.11-rc2~57^2~21 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9f272573b7a7ac578232fcd06cd28f6413a14438;p=u-boot imx: sys_proto: Add a prototype for board_mmc_get_env_dev() When compiling with W=1 the following warning is observed: board/freescale/mx6sabresd/mx6sabresd.c:266:5: warning: no previous prototype for ‘board_mmc_get_env_dev’ [-Wmissing-prototypes] int board_mmc_get_env_dev(int devno) Remove this warning by adding the function prototype into sys_proto.h file. Signed-off-by: Diego Dorta Reviewed-by: Fabio Estevam Reviewed-by: Stefano Babic --- diff --git a/arch/arm/include/asm/mach-imx/sys_proto.h b/arch/arm/include/asm/mach-imx/sys_proto.h index 970c4ca760..703634334f 100644 --- a/arch/arm/include/asm/mach-imx/sys_proto.h +++ b/arch/arm/include/asm/mach-imx/sys_proto.h @@ -107,6 +107,8 @@ void init_aips(void); void init_src(void); void imx_set_wdog_powerdown(bool enable); +int board_mmc_get_env_dev(int devno); + /* * Initializes on-chip ethernet controllers. * to override, implement board_eth_init()