diff options
author | Marek Vasut <marex@denx.de> | 2013-01-22 15:01:03 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-01-28 11:43:01 +0100 |
commit | 90bc2bf29780c2d238bb0c898d3a6cc6ec73922a (patch) | |
tree | 4d15ab680f5e6e0ac05862921a4000b78d10783f /board/bluegiga | |
parent | 8000d8a8260c95727b6357a638a5e80625d7a899 (diff) | |
download | u-boot-90bc2bf29780c2d238bb0c898d3a6cc6ec73922a.tar.gz |
mxs: mmc: Allow overriding default card detect implementation
Some MXS based boards do not implement the card-detect signal. Allow
user to specify alternate card-detect implementation.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Otavio Salvador <otavio@ossystems.com.br>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'board/bluegiga')
-rw-r--r-- | board/bluegiga/apx4devkit/apx4devkit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/bluegiga/apx4devkit/apx4devkit.c b/board/bluegiga/apx4devkit/apx4devkit.c index 029b9731a1..5927693e0d 100644 --- a/board/bluegiga/apx4devkit/apx4devkit.c +++ b/board/bluegiga/apx4devkit/apx4devkit.c @@ -69,7 +69,7 @@ int board_init(void) #ifdef CONFIG_CMD_MMC int board_mmc_init(bd_t *bis) { - return mxsmmc_initialize(bis, 0, NULL); + return mxsmmc_initialize(bis, 0, NULL, NULL); } #endif |