From: Jaehoon Chung Date: Wed, 4 Feb 2015 06:48:39 +0000 (+0900) Subject: mmc: exynos_dw_mmc: set to clksel_val into board-init function X-Git-Tag: v2015.04-rc3~30^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3a33bb1874a75abde8872915f808945b6d20f6f2;p=platform%2Fkernel%2Fu-boot.git mmc: exynos_dw_mmc: set to clksel_val into board-init function "clksel_val" is assigned to property of mmc or defined value. But it doesn't write at initial sequence. There is a reason that get the wrong source-clock value. This patch fixed it. Signed-off-by: Jaehoon Chung --- diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c index dfa209b..3936660 100644 --- a/drivers/mmc/exynos_dw_mmc.c +++ b/drivers/mmc/exynos_dw_mmc.c @@ -64,6 +64,10 @@ static void exynos_dwmci_board_init(struct dwmci_host *host) MPSCTRL_NON_SECURE_READ_BIT | MPSCTRL_NON_SECURE_WRITE_BIT | MPSCTRL_VALID); } + + /* Set to clksel_val at initial time */ + if (host->clksel_val) + exynos_dwmci_clksel(host); } static int exynos_dwmci_core_init(struct dwmci_host *host, int index)