mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
dm: mmc: Ensure that block device is probed
Make sure that we probe the block device before using it when reading the environment. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
9f103b9cb5
commit
01b73fe630
1 changed files with 6 additions and 1 deletions
|
|
@ -121,7 +121,12 @@ static const char *init_mmc_for_env(struct mmc *mmc)
|
|||
if (!mmc)
|
||||
return "!No MMC card found";
|
||||
|
||||
#ifndef CONFIG_BLK
|
||||
#ifdef CONFIG_BLK
|
||||
struct udevice *dev;
|
||||
|
||||
if (blk_get_from_parent(mmc->dev, &dev))
|
||||
return "!No block device";
|
||||
#else
|
||||
if (mmc_init(mmc))
|
||||
return "!MMC init failed";
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue