diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2019-09-06 07:36:43 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2019-09-06 07:36:42 -0700 |
| commit | aae46fb8df127c01f37f2862baa366fdb994d486 (patch) | |
| tree | b8cd40ac100a41f6c95d7eb56392a9ecf9a9af87 | |
| parent | 9767abdcf775bf8361604a5e6d762327d1b6d30b (diff) | |
| parent | def9fcaa479a7c180ea3156035e5905a5e329989 (diff) | |
Merge "mmc: core: Return SD card status if sdr104_wa is not present"
| -rw-r--r-- | drivers/mmc/core/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c index 3dee072ce841..25150b51523c 100644 --- a/drivers/mmc/core/core.c +++ b/drivers/mmc/core/core.c @@ -486,7 +486,7 @@ int mmc_recovery_fallback_lower_speed(struct mmc_host *host) mmc_host_clear_sdr104(host); err = mmc_hw_reset(host); host->card->sdr104_blocked = true; - } else { + } else if (mmc_card_sd(host->card)) { /* If sdr104_wa is not present, just return status */ err = host->bus_ops->alive(host); } |
