summaryrefslogtreecommitdiffstats
path: root/include
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 /include
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 'include')
-rw-r--r--include/linux/clk.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/clk.h b/include/linux/clk.h
index ee888dc083..1f20eb2772 100644
--- a/include/linux/clk.h
+++ b/include/linux/clk.h
@@ -310,7 +310,7 @@ struct clk {
int enable_count;
struct list_head list;
const char *name;
- const char **parent_names;
+ const char * const *parent_names;
int num_parents;
struct clk **parents;
@@ -384,11 +384,11 @@ struct clk_mux {
extern struct clk_ops clk_mux_ops;
struct clk *clk_mux_alloc(const char *name, void __iomem *reg,
- u8 shift, u8 width, const char **parents, u8 num_parents,
+ u8 shift, u8 width, const char * const *parents, u8 num_parents,
unsigned flags);
void clk_mux_free(struct clk *clk_mux);
struct clk *clk_mux(const char *name, void __iomem *reg,
- u8 shift, u8 width, const char **parents, u8 num_parents,
+ u8 shift, u8 width, const char * const *parents, u8 num_parents,
unsigned flags);
struct clk_gate {
@@ -429,7 +429,7 @@ struct clk *clk_lookup(const char *name);
void clk_dump(int verbose);
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,