diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2015-03-05 19:45:21 +0900 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2015-03-31 16:50:43 +0200 |
commit | 488b8d63a63400e2839062a99358815ca21a2860 (patch) | |
tree | 6c4dcc1241c760fb64174ef9a52892fb7081b0ab /drivers/mmc | |
parent | 9250aea76bfcbf4c2a7868e5566281bf2bb7af27 (diff) | |
download | linux-488b8d63a63400e2839062a99358815ca21a2860.tar.gz linux-488b8d63a63400e2839062a99358815ca21a2860.tar.bz2 linux-488b8d63a63400e2839062a99358815ca21a2860.zip |
mmc: dw_mmc: enable card read threshold when mode is HS400
Enable card-read-threshold, when eMMC mode is HS400.
Refer to f1d2736c8156 (mmc: dw_mmc: control card read threshold)
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/dw_mmc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c index 47dfd0eafb7a..f68ea4d57b18 100644 --- a/drivers/mmc/host/dw_mmc.c +++ b/drivers/mmc/host/dw_mmc.c @@ -764,6 +764,7 @@ static void dw_mci_ctrl_rd_thld(struct dw_mci *host, struct mmc_data *data) return; if (host->timing != MMC_TIMING_MMC_HS200 && + host->timing != MMC_TIMING_MMC_HS400 && host->timing != MMC_TIMING_UHS_SDR104) goto disable; |