diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-02-15 16:51:59 (GMT) |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2014-03-05 11:23:48 (GMT) |
commit | 3c7ca9670be1040e25081598fb9d3009a6cb08c8 (patch) | |
tree | 2c5e8f84ddb1b673757613f88e385dc82bed0857 /include | |
parent | afb9266568866d10338c9c45328d8e7c58bbe836 (diff) | |
download | u-boot-3c7ca9670be1040e25081598fb9d3009a6cb08c8.tar.xz |
mmc: Add a prototype for board_mmc_init()
Fixes the following sparse warning:
wandboard.c:137:5: warning: symbol 'board_mmc_init' was not declared. Should it be static?
Cc: Pantelis Antoniou <panto@antoniou-consulting.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/mmc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mmc.h b/include/mmc.h index e1060b9..218c03f 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -349,4 +349,6 @@ struct mmc *mmc_spi_init(uint bus, uint cs, uint speed, uint mode); int mmc_legacy_init(int verbose); #endif +int board_mmc_init(bd_t *bis); + #endif /* _MMC_H_ */ |