Skip to content
Snippets Groups Projects
Commit afc9e2b5 authored by Jaehoon Chung's avatar Jaehoon Chung Committed by Pantelis Antoniou
Browse files

mmc: dw_mmc: fixed the wrong bit control


If mode is not DDR-mode, then it needs to clear it.

Signed-off-by: default avatarJaehoon Chung <jh80.chung@samsung.com>
parent 4b7cee53
No related branches found
No related tags found
No related merge requests found
......@@ -321,7 +321,7 @@ static void dwmci_set_ios(struct mmc *mmc)
if (mmc->ddr_mode)
regs |= DWMCI_DDR_MODE;
else
regs &= DWMCI_DDR_MODE;
regs &= ~DWMCI_DDR_MODE;
dwmci_writel(host, DWMCI_UHS_REG, regs);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment