diff options
author | Nikita Kiryanov <nikita@compulab.co.il> | 2012-12-03 02:19:47 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-03-08 16:41:13 -0500 |
commit | e3913f56a26dbb49758370320dac477ab0324631 (patch) | |
tree | b2a989a6483ef53c309b0e16f774b8d2007c9bfd /board/ti/panda | |
parent | d23d8d7e069c3aca071b7f68d9c15d11f8d4c84d (diff) |
omap_hsmmc: add driver check for write protection
Add check for write protection in omap mmc driver.
Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/ti/panda')
-rw-r--r-- | board/ti/panda/panda.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ti/panda/panda.c b/board/ti/panda/panda.c index ebbb8b19027..cab059863d3 100644 --- a/board/ti/panda/panda.c +++ b/board/ti/panda/panda.c @@ -179,7 +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) { - return omap_mmc_init(0, 0, 0, -1); + return omap_mmc_init(0, 0, 0, -1, -1); } #endif |