Commit 65a6b7c5 authored by Abel Vesa's avatar Abel Vesa Committed by Stephen Boyd

clk: imx: Make parent_names const pointer in composite-8m

The parent_names needs to be pointer to const pointer to const char.
Signed-off-by: default avatarAbel Vesa <abel.vesa@nxp.com>
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent d1393711
...@@ -123,7 +123,7 @@ static const struct clk_ops imx8m_clk_composite_divider_ops = { ...@@ -123,7 +123,7 @@ static const struct clk_ops imx8m_clk_composite_divider_ops = {
}; };
struct clk *imx8m_clk_composite_flags(const char *name, struct clk *imx8m_clk_composite_flags(const char *name,
const char **parent_names, const char * const *parent_names,
int num_parents, void __iomem *reg, int num_parents, void __iomem *reg,
unsigned long flags) unsigned long flags)
{ {
......
...@@ -354,7 +354,7 @@ struct clk *imx_clk_cpu(const char *name, const char *parent_name, ...@@ -354,7 +354,7 @@ struct clk *imx_clk_cpu(const char *name, const char *parent_name,
struct clk *step); struct clk *step);
struct clk *imx8m_clk_composite_flags(const char *name, struct clk *imx8m_clk_composite_flags(const char *name,
const char **parent_names, const char * const *parent_names,
int num_parents, void __iomem *reg, int num_parents, void __iomem *reg,
unsigned long flags); unsigned long flags);
......
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