diff options
author | Diego Dorta <diego.dorta@nxp.com> | 2017-09-21 15:10:03 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2017-10-12 17:31:16 +0200 |
commit | 9f272573b7a7ac578232fcd06cd28f6413a14438 (patch) | |
tree | c8c8064c06c64eeecca6c7de6d090fa8fbf367a9 /arch | |
parent | 7594c51ae60296b21f90052d060d4d1330a507a6 (diff) | |
download | u-boot-9f272573b7a7ac578232fcd06cd28f6413a14438.zip u-boot-9f272573b7a7ac578232fcd06cd28f6413a14438.tar.gz u-boot-9f272573b7a7ac578232fcd06cd28f6413a14438.tar.bz2 |
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 <diego.dorta@nxp.com>
Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
Reviewed-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/include/asm/mach-imx/sys_proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/include/asm/mach-imx/sys_proto.h b/arch/arm/include/asm/mach-imx/sys_proto.h index 970c4ca..7036343 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() |