You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
clk: samsung: always allocate the clk_table
This is needed to allow looking up previous created clocks when adding separate aliases to them. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Acked-by: Mike Turquette <mturquette@linaro.org> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
committed by
Kukjin Kim
parent
2466196d3e
commit
6e92bf5a01
@@ -76,14 +76,14 @@ void __init samsung_clk_init(struct device_node *np, void __iomem *base,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (!np)
|
|
||||||
return;
|
|
||||||
|
|
||||||
#ifdef CONFIG_OF
|
|
||||||
clk_table = kzalloc(sizeof(struct clk *) * nr_clks, GFP_KERNEL);
|
clk_table = kzalloc(sizeof(struct clk *) * nr_clks, GFP_KERNEL);
|
||||||
if (!clk_table)
|
if (!clk_table)
|
||||||
panic("could not allocate clock lookup table\n");
|
panic("could not allocate clock lookup table\n");
|
||||||
|
|
||||||
|
if (!np)
|
||||||
|
return;
|
||||||
|
|
||||||
|
#ifdef CONFIG_OF
|
||||||
clk_data.clks = clk_table;
|
clk_data.clks = clk_table;
|
||||||
clk_data.clk_num = nr_clks;
|
clk_data.clk_num = nr_clks;
|
||||||
of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data);
|
of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data);
|
||||||
|
|||||||
Reference in New Issue
Block a user