diff options
author | Xu Ziyuan <xzy.xu@rock-chips.com> | 2017-03-12 14:19:04 +0800 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2017-03-29 07:38:07 +0200 |
commit | 6f730459d93985298f13087af24c5313e492146b (patch) | |
tree | b4af9417a4e3dabf2570ba675ecf4fa878d05654 | |
parent | 5b3e5b56969cb61d73a7c293679ba1536a94e70e (diff) |
mmc: drop unnecessary send_status request
It's redundant to send cmd13 after cmd9 whose response is not R1b. The
card devices will not be busy w/ cmd9.
Signed-off-by: Ziyuan Xu <xzy.xu@rock-chips.com>
-rw-r--r-- | drivers/mmc/mmc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index 3648950cf5..72fc17716e 100644 --- a/drivers/mmc/mmc.c +++ b/drivers/mmc/mmc.c @@ -1111,7 +1111,6 @@ static int mmc_startup(struct mmc *mmc) struct mmc_cmd cmd; ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN); ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN); - int timeout = 1000; bool has_parts = false; bool part_completed; struct blk_desc *bdesc; @@ -1167,9 +1166,6 @@ static int mmc_startup(struct mmc *mmc) err = mmc_send_cmd(mmc, &cmd, NULL); - /* Waiting for the ready status */ - mmc_send_status(mmc, timeout); - if (err) return err; |