Commit 7784f4da authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Paul Mundt

sh: clkfwk: sh_clk_init_parent() should be called after clk_register()

sh_clk_init_parent() are using clk->mapped_reg
which is mapped in clk_register()
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 2dacb97d
......@@ -222,11 +222,11 @@ static int __init sh_clk_div6_register_ops(struct clk *clks, int nr,
clkp->ops = ops;
clkp->freq_table = freq_table + (k * freq_table_size);
clkp->freq_table[nr_divs].frequency = CPUFREQ_TABLE_END;
ret = sh_clk_init_parent(clkp);
ret = clk_register(clkp);
if (ret < 0)
break;
ret = clk_register(clkp);
ret = sh_clk_init_parent(clkp);
}
return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment