summaryrefslogtreecommitdiffstats
path: root/drivers/clk/clk-composite.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2019-03-08 15:03:41 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2019-03-11 08:31:50 +0100
commitaf616888c86534b0f6a9754b2cf63adf062fdb7d (patch)
treeed1cfa56f13ef311925210f33f9264e090cd2b1d /drivers/clk/clk-composite.c
parentec896c46b78234fb2b88f14be46af728024282bd (diff)
downloadbarebox-af616888c86534b0f6a9754b2cf63adf062fdb7d.tar.gz
barebox-af616888c86534b0f6a9754b2cf63adf062fdb7d.tar.xz
clk: parent_names should be const
Not only the array of pointers should be const, but also the strings they point to. Add missing const. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/clk/clk-composite.c')
-rw-r--r--drivers/clk/clk-composite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-composite.c b/drivers/clk/clk-composite.c
index 716f6805f3..e21ab98453 100644
--- a/drivers/clk/clk-composite.c
+++ b/drivers/clk/clk-composite.c
@@ -116,7 +116,7 @@ static struct clk_ops clk_composite_ops = {
};
struct clk *clk_register_composite(const char *name,
- const char **parent_names, int num_parents,
+ const char * const *parent_names, int num_parents,
struct clk *mux_clk,
struct clk *rate_clk,
struct clk *gate_clk,