diff options
author | Chaotian Jing <chaotian.jing@mediatek.com> | 2019-02-15 06:59:34 +0100 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2019-02-28 09:16:12 +0100 |
commit | 3a0681c7448b174e5dcfd19e9079cdd281c35f1a (patch) | |
tree | e7f4841bb82b71e46dcc2a8908b4e125ffb2a455 /drivers/mmc | |
parent | mmc: core: Convert mmc_align_data_size() into an SDIO specific function (diff) | |
download | linux-3a0681c7448b174e5dcfd19e9079cdd281c35f1a.tar.xz linux-3a0681c7448b174e5dcfd19e9079cdd281c35f1a.zip |
mmc: core: do not retry CMD6 in __mmc_switch()
the response type of CMD6 is R1B, when the first CMD6 gets response
CRC error, do retry may get timeout error due to card may still in
busy state, which cause this retry make no sense.
Signed-off-by: Chaotian Jing <chaotian.jing@mediatek.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/core/mmc_ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/core/mmc_ops.c b/drivers/mmc/core/mmc_ops.c index 9054329fe903..c5208fb312ae 100644 --- a/drivers/mmc/core/mmc_ops.c +++ b/drivers/mmc/core/mmc_ops.c @@ -562,7 +562,7 @@ int __mmc_switch(struct mmc_card *card, u8 set, u8 index, u8 value, if (index == EXT_CSD_SANITIZE_START) cmd.sanitize_busy = true; - err = mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES); + err = mmc_wait_for_cmd(host, &cmd, 0); if (err) goto out; |