diff options
author | Steve Sakoman <steve@sakoman.com> | 2010-07-01 12:12:42 -0700 |
---|---|---|
committer | Sandeep Paulraj <s-paulraj@ti.com> | 2010-07-05 20:00:32 -0400 |
commit | 89716964d947805337e82bbf652f13b9a972e47b (patch) | |
tree | e9fa8329afc3d92dfea3bd284154dec55345c3f3 /include | |
parent | c57cca255ce403fdfe77e7b040b578a29514da0b (diff) | |
download | u-boot-midas-89716964d947805337e82bbf652f13b9a972e47b.tar.gz u-boot-midas-89716964d947805337e82bbf652f13b9a972e47b.tar.bz2 u-boot-midas-89716964d947805337e82bbf652f13b9a972e47b.zip |
mmc: add function prototype for mmc_set_dev in mmc.h
this eliminates compiler warnings when cmd_mmc.c is built with CONFIG_SYS_MMC_SET_DEV
the mmc_set_dev implementation in omap3_mmc.c is also tweaked to match
the new prototype in parameter naming and type
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/mmc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mmc.h b/include/mmc.h index 8973bc7658..fcb237e81e 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -271,6 +271,7 @@ int mmc_initialize(bd_t *bis); int mmc_init(struct mmc *mmc); int mmc_read(struct mmc *mmc, u64 src, uchar *dst, int size); struct mmc *find_mmc_device(int dev_num); +int mmc_set_dev(int dev_num); void print_mmc_devices(char separator); int board_mmc_getcd(u8 *cd, struct mmc *mmc); |