summaryrefslogtreecommitdiff
path: root/drivers/mmc/core/mmc.c
diff options
context:
space:
mode:
authorUlf Hansson <ulf.hansson@linaro.org>2014-10-20 11:49:21 +0200
committerUlf Hansson <ulf.hansson@linaro.org>2014-11-10 12:40:41 +0100
commit9e304d67ad4768585e4c7002341aac81272799ec (patch)
tree41a222ca7129ca251bf2b8bbae82c925b4351a10 /drivers/mmc/core/mmc.c
parent56d09b1da7dbe18bdb4e4a74df4a00ab95e6aecd (diff)
mmc: core: Remove redundant check of max_dtr while selecting timings
If the MMC spec version is < CSD_SPEC_VER_4, there aren't support for the EXT_CSD register. Since max_dtr is fetched from there, it will default to zero, which thus isn't needed to verify. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/core/mmc.c')
-rw-r--r--drivers/mmc/core/mmc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c
index c0f21eb56eec..cc9f4599f3e1 100644
--- a/drivers/mmc/core/mmc.c
+++ b/drivers/mmc/core/mmc.c
@@ -1157,8 +1157,7 @@ static int mmc_select_timing(struct mmc_card *card)
{
int err = 0;
- if ((card->csd.mmca_vsn < CSD_SPEC_VER_4 &&
- card->ext_csd.hs_max_dtr == 0))
+ if (card->csd.mmca_vsn < CSD_SPEC_VER_4)
goto bus_speed;
if (card->mmc_avail_type & EXT_CSD_CARD_TYPE_HS200)