diff options
author | Nikita Kiryanov <nikita@compulab.co.il> | 2012-12-03 02:19:44 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-03-08 16:41:13 -0500 |
commit | e874d5b001e9d7ea0fc7596ef0fe6dd520ed8ec6 (patch) | |
tree | 986ee326891b81627b807faaa381dff0fea1a8d2 /board/ti/panda/panda.c | |
parent | cc22b0c0122cee0ab59dcc3c06c52835b38e8791 (diff) | |
download | u-boot-imx-e874d5b001e9d7ea0fc7596ef0fe6dd520ed8ec6.zip u-boot-imx-e874d5b001e9d7ea0fc7596ef0fe6dd520ed8ec6.tar.gz u-boot-imx-e874d5b001e9d7ea0fc7596ef0fe6dd520ed8ec6.tar.bz2 |
omap_hsmmc: implement driver check for card detection
Implement driver check for card detection.
Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Diffstat (limited to 'board/ti/panda/panda.c')
-rw-r--r-- | board/ti/panda/panda.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/board/ti/panda/panda.c b/board/ti/panda/panda.c index 4feef78..ebbb8b1 100644 --- a/board/ti/panda/panda.c +++ b/board/ti/panda/panda.c @@ -179,8 +179,7 @@ void set_muxconf_regs_non_essential(void) #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_GENERIC_MMC) int board_mmc_init(bd_t *bis) { - omap_mmc_init(0, 0, 0); - return 0; + return omap_mmc_init(0, 0, 0, -1); } #endif |