diff options
| author | Simon Glass <[email protected]> | 2017-04-23 20:02:04 -0600 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2017-06-01 07:03:04 -0600 |
| commit | e7017a3c7d2f9ff845516675205c99df4ad6eacc (patch) | |
| tree | 35b761f3374fc2a6bf1b383d1d313d13c1f8b2ab | |
| parent | 05cbeb7c3612da8d4bafa82be05092450a500052 (diff) | |
dm: mmc: Don't re-init when accessing environment
With driver model MMC is probed automatically when needed. We should not
re-init MMC each time.
Signed-off-by: Simon Glass <[email protected]>
| -rw-r--r-- | common/env_mmc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/env_mmc.c b/common/env_mmc.c index 45d95a1e23e..404de850623 100644 --- a/common/env_mmc.c +++ b/common/env_mmc.c @@ -121,9 +121,10 @@ static const char *init_mmc_for_env(struct mmc *mmc) if (!mmc) return "!No MMC card found"; +#ifndef CONFIG_BLK if (mmc_init(mmc)) return "!MMC init failed"; - +#endif if (mmc_set_env_part(mmc)) return "!MMC partition switch failed"; |
