mirror of https://gitee.com/openkylin/linux.git
ARM i.MX5 uart clock bug fix
uart clk is from pll3 on mx53 instead of mx51 Signed-off-by: Yong Shen <yong.shen@freescale.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
parent
b0a6ba5ffb
commit
2cad26a9d5
|
@ -1370,7 +1370,6 @@ int __init mx51_clocks_init(unsigned long ckil, unsigned long osc,
|
|||
|
||||
clk_tree_init();
|
||||
|
||||
clk_set_parent(&uart_root_clk, &pll3_sw_clk);
|
||||
clk_enable(&cpu_clk);
|
||||
clk_enable(&main_bus_clk);
|
||||
|
||||
|
@ -1413,6 +1412,7 @@ int __init mx53_clocks_init(unsigned long ckil, unsigned long osc,
|
|||
|
||||
clk_tree_init();
|
||||
|
||||
clk_set_parent(&uart_root_clk, &pll3_sw_clk);
|
||||
clk_enable(&cpu_clk);
|
||||
clk_enable(&main_bus_clk);
|
||||
|
||||
|
|
Loading…
Reference in New Issue