clk: qcom: clk-rpmh: Convert to parent data scheme
Convert the rpmh clock driver to use the new parent data scheme by specifying the parent data for board clock. Signed-off-by: Vinod Koul <vkoul@kernel.org> Link: https://lkml.kernel.org/r/20190826173120.2971-3-vkoul@kernel.org Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
8c758d6675
commit
a64a9e5172
|
@ -95,7 +95,10 @@ static DEFINE_MUTEX(rpmh_clk_lock);
|
||||||
.hw.init = &(struct clk_init_data){ \
|
.hw.init = &(struct clk_init_data){ \
|
||||||
.ops = &clk_rpmh_ops, \
|
.ops = &clk_rpmh_ops, \
|
||||||
.name = #_name, \
|
.name = #_name, \
|
||||||
.parent_names = (const char *[]){ "xo_board" }, \
|
.parent_data = &(const struct clk_parent_data){ \
|
||||||
|
.fw_name = "xo", \
|
||||||
|
.name = "xo_board", \
|
||||||
|
}, \
|
||||||
.num_parents = 1, \
|
.num_parents = 1, \
|
||||||
}, \
|
}, \
|
||||||
}; \
|
}; \
|
||||||
|
@ -110,7 +113,10 @@ static DEFINE_MUTEX(rpmh_clk_lock);
|
||||||
.hw.init = &(struct clk_init_data){ \
|
.hw.init = &(struct clk_init_data){ \
|
||||||
.ops = &clk_rpmh_ops, \
|
.ops = &clk_rpmh_ops, \
|
||||||
.name = #_name_active, \
|
.name = #_name_active, \
|
||||||
.parent_names = (const char *[]){ "xo_board" }, \
|
.parent_data = &(const struct clk_parent_data){ \
|
||||||
|
.fw_name = "xo", \
|
||||||
|
.name = "xo_board", \
|
||||||
|
}, \
|
||||||
.num_parents = 1, \
|
.num_parents = 1, \
|
||||||
}, \
|
}, \
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue