summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Reimer <mreimer@sdgsystems.com>2015-02-23 14:52:22 -0700
committerPantelis Antoniou <pantelis.antoniou@konsulko.com>2015-03-18 09:51:56 +0200
commit8ebde4f0b3e513a41b388893a66ade4a6c292465 (patch)
treee1419aa294156d7d5ff99efe365b38e09b9017f2
parent323aaaa1e364bf8426a9c8fd5158fe2d155ae7b9 (diff)
downloadtalos-obmc-uboot-8ebde4f0b3e513a41b388893a66ade4a6c292465.tar.gz
talos-obmc-uboot-8ebde4f0b3e513a41b388893a66ade4a6c292465.zip
mmc: s5p: properly mask SELBASECLK
Properly mask SELBASECLK by using an actual mask rather than the number of bits to shift in order to create the mask. Signed-off-by: Matt Reimer <mreimer@sdgsystems.com> Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
-rw-r--r--drivers/mmc/s5p_sdhci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/s5p_sdhci.c b/drivers/mmc/s5p_sdhci.c
index 3899372e0e..0eec7310e4 100644
--- a/drivers/mmc/s5p_sdhci.c
+++ b/drivers/mmc/s5p_sdhci.c
@@ -30,7 +30,7 @@ static void s5p_sdhci_set_control_reg(struct sdhci_host *host)
sdhci_writel(host, SDHCI_CTRL4_DRIVE_MASK(0x3), SDHCI_CONTROL4);
val = sdhci_readl(host, SDHCI_CONTROL2);
- val &= SDHCI_CTRL2_SELBASECLK_SHIFT;
+ val &= SDHCI_CTRL2_SELBASECLK_MASK(3);
val |= SDHCI_CTRL2_ENSTAASYNCCLR |
SDHCI_CTRL2_ENCMDCNFMSK |
OpenPOWER on IntegriCloud