mmc: dw_mmc: exynos: Revert the sdr_timing assignment 94/34594/1
authorYuvaraj Kumar C D <yuvaraj.cd@gmail.com>
Tue, 22 Oct 2013 09:11:56 +0000 (14:41 +0530)
committerInha Song <ideal.song@samsung.com>
Thu, 29 Jan 2015 10:44:47 +0000 (19:44 +0900)
e6c784eded7b3 ("mmc: dw_mmc: exynos: move the exynos private init") was
wrongly assigning ddr_timing value to sdr_timing. This patch fixes this
by reverting the sdr_timing assignment statement to the earlier location.

Change-Id: I00d74956f2ce166063446b388b92c166d8b524dc
Signed-off-by: Yuvaraj Kumar C D <yuvaraj.cd@samsung.com>
Acked-by: Seungwon Jeon <tgih.jun@samsung.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
drivers/mmc/host/dw_mmc-exynos.c

index 84e4d2f..bddb882 100644 (file)
@@ -177,12 +177,13 @@ static int dw_mci_exynos_parse_dt(struct dw_mci *host)
        if (ret)
                return ret;
 
+       priv->sdr_timing = SDMMC_CLKSEL_TIMING(timing[0], timing[1], div);
+
        ret = of_property_read_u32_array(np,
                        "samsung,dw-mshc-ddr-timing", timing, 2);
        if (ret)
                return ret;
 
-       priv->sdr_timing = SDMMC_CLKSEL_TIMING(timing[0], timing[1], div);
        priv->ddr_timing = SDMMC_CLKSEL_TIMING(timing[0], timing[1], div);
        host->priv = priv;
        return 0;