[U-Boot] [PATCH v2 2/8] mmc: imx6: call spl_board_mmc_init
John Tobias
john.tobias.ph at gmail.com
Sat Nov 8 19:22:51 CET 2014
Add to call spl_board_mmc_init when CONFIG_SPL_MMC_SUPPORT is defined,
by default the mmc_initialize function will call board_mmc_init. But,
the said function is not link to the spl image.
---
drivers/mmc/mmc.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
index 44a4feb..d641c2a 100644
--- a/drivers/mmc/mmc.c
+++ b/drivers/mmc/mmc.c
@@ -1441,10 +1441,13 @@ int mmc_initialize(bd_t *bis)
INIT_LIST_HEAD (&mmc_devices);
cur_dev_num = 0;
+#ifdef CONFIG_SPL_BUILD
+ if (spl_board_mmc_init(bis) < 0)
+ cpu_mmc_init(bis);
+#else
if (board_mmc_init(bis) < 0)
cpu_mmc_init(bis);
-#ifndef CONFIG_SPL_BUILD
print_mmc_devices(',');
#endif
--
1.9.1
More information about the U-Boot
mailing list