diff options
author | Seungwon Jeon <tgih.jun@samsung.com> | 2014-03-14 13:12:43 +0100 |
---|---|---|
committer | Chris Ball <chris@printf.net> | 2014-04-20 23:00:01 +0200 |
commit | cab3a8021bf0dc790071514a07b0b6f745b1814a (patch) | |
tree | e9873b9acc7620f497fb9c4484c37a30614360f5 /drivers/mmc/host/dw_mmc.c | |
parent | mmc: rtsx: clarify DDR timing mode between SD-UHS and eMMC (diff) | |
download | linux-cab3a8021bf0dc790071514a07b0b6f745b1814a.tar.xz 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.c | 2 |
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); |