summaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/dw_mmc.c
diff options
context:
space:
mode:
authorSeungwon Jeon2014-03-14 13:12:43 +0100
committerChris Ball2014-04-20 23:00:01 +0200
commitcab3a8021bf0dc790071514a07b0b6f745b1814a (patch)
treee9873b9acc7620f497fb9c4484c37a30614360f5 /drivers/mmc/host/dw_mmc.c
parentmmc: rtsx: clarify DDR timing mode between SD-UHS and eMMC (diff)
downloadkernel-qcow2-linux-cab3a8021bf0dc790071514a07b0b6f745b1814a.tar.gz
kernel-qcow2-linux-cab3a8021bf0dc790071514a07b0b6f745b1814a.tar.xz
kernel-qcow2-linux-cab3a8021bf0dc790071514a07b0b6f745b1814a.zip
mmc: dw_mmc: clarify DDR timing mode between SD-UHS and eMMC
Replaced UHS_DDR50 with MMC_DDR52. And MMC_CAP_UHS_DDR50 is removed because of non-implementation of UHS signaling. Signed-off-by: Seungwon Jeon <tgih.jun@samsung.com> Acked-by: Jaehoon Chung <jh80.chung@samsung.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> Signed-off-by: Chris Ball <chris@printf.net>
Diffstat (limited to 'drivers/mmc/host/dw_mmc.c')
-rw-r--r--drivers/mmc/host/dw_mmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c
index cced599d5aeb..637f52a62c56 100644
--- a/drivers/mmc/host/dw_mmc.c
+++ b/drivers/mmc/host/dw_mmc.c
@@ -962,7 +962,7 @@ static void dw_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
regs = mci_readl(slot->host, UHS_REG);
/* DDR mode set */
- if (ios->timing == MMC_TIMING_UHS_DDR50)
+ if (ios->timing == MMC_TIMING_MMC_DDR52)
regs |= ((0x1 << slot->id) << 16);
else
regs &= ~((0x1 << slot->id) << 16);