clk: highbank: Migrate to clk_hw based registration and OF APIs
Now that we have clk_hw based provider APIs to register clks, we can get rid of struct clk pointers in this driver, allowing us to move closer to a clear split of consumer and provider clk APIs. Signed-off-by: Stephen Boyd <stephen.boyd@linaro.org> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
parent
1ff435d357
commit
8e66cc0582
|
@ -275,7 +275,6 @@ static const struct clk_ops periclk_ops = {
|
||||||
static __init struct clk *hb_clk_init(struct device_node *node, const struct clk_ops *ops)
|
static __init struct clk *hb_clk_init(struct device_node *node, const struct clk_ops *ops)
|
||||||
{
|
{
|
||||||
u32 reg;
|
u32 reg;
|
||||||
struct clk *clk;
|
|
||||||
struct hb_clk *hb_clk;
|
struct hb_clk *hb_clk;
|
||||||
const char *clk_name = node->name;
|
const char *clk_name = node->name;
|
||||||
const char *parent_name;
|
const char *parent_name;
|
||||||
|
@ -308,13 +307,13 @@ static __init struct clk *hb_clk_init(struct device_node *node, const struct clk
|
||||||
|
|
||||||
hb_clk->hw.init = &init;
|
hb_clk->hw.init = &init;
|
||||||
|
|
||||||
clk = clk_register(NULL, &hb_clk->hw);
|
rc = clk_hw_register(NULL, &hb_clk->hw);
|
||||||
if (WARN_ON(IS_ERR(clk))) {
|
if (WARN_ON(rc)) {
|
||||||
kfree(hb_clk);
|
kfree(hb_clk);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
rc = of_clk_add_provider(node, of_clk_src_simple_get, clk);
|
rc = of_clk_add_hw_provider(node, of_clk_hw_simple_get, &hb_clk->hw);
|
||||||
return clk;
|
return hb_clk->hw.clk;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __init hb_pll_init(struct device_node *node)
|
static void __init hb_pll_init(struct device_node *node)
|
||||||
|
|
Loading…
Reference in New Issue