ipq40xx: Remove mmc_init call during board init

This fix removes the mmc_init that is being called during
board init to prevent error message in cases where eMMC
card is not connected.

Change-Id: I918c71c391002d24e704be30043ff0cc8dfd4f83
Signed-off-by: G Dhivya <gdhivya@codeaurora.org>
This commit is contained in:
G Dhivya 2016-11-23 15:08:29 +05:30
parent 46a3cf234e
commit 70dde8bf2e

View file

@ -325,9 +325,6 @@ int qca_mmc_init(bd_t *bis, qca_mmc *host)
host->dev_num = mmc->block_dev.dev;
mmc->has_init = 0;
mmc->init_in_progress = 0;
ret = mmc_init(mmc);
if (ret)
puts("mmc_init failed\n");
}
return ret;