
7 Nov
2014
7 Nov
'14
11:12 p.m.
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..8b68e3e 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