arm: exynos: fix set_mmc_clk for exynos4x12
Fix the set_mmc_clk() for exnos4x12. If board is exynos4x12, mmc clock should be set to wrong value. Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
This commit is contained in:
parent
0938f5b275
commit
a85ca22f62
|
|
@ -1410,7 +1410,8 @@ void set_mmc_clk(int dev_index, unsigned int div)
|
||||||
else {
|
else {
|
||||||
if (proid_is_exynos4412())
|
if (proid_is_exynos4412())
|
||||||
exynos4x12_set_mmc_clk(dev_index, div);
|
exynos4x12_set_mmc_clk(dev_index, div);
|
||||||
exynos4_set_mmc_clk(dev_index, div);
|
else
|
||||||
|
exynos4_set_mmc_clk(dev_index, div);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue