diff options
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/clk-mux.c | 2 | ||||
-rw-r--r-- | drivers/clk/clk.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/clk-mux.c b/drivers/clk/clk-mux.c index 54244889a948..bd5e598b9f1e 100644 --- a/drivers/clk/clk-mux.c +++ b/drivers/clk/clk-mux.c | |||
@@ -89,7 +89,7 @@ const struct clk_ops clk_mux_ops = { | |||
89 | EXPORT_SYMBOL_GPL(clk_mux_ops); | 89 | EXPORT_SYMBOL_GPL(clk_mux_ops); |
90 | 90 | ||
91 | struct clk *clk_register_mux(struct device *dev, const char *name, | 91 | struct clk *clk_register_mux(struct device *dev, const char *name, |
92 | char **parent_names, u8 num_parents, unsigned long flags, | 92 | const char **parent_names, u8 num_parents, unsigned long flags, |
93 | void __iomem *reg, u8 shift, u8 width, | 93 | void __iomem *reg, u8 shift, u8 width, |
94 | u8 clk_mux_flags, spinlock_t *lock) | 94 | u8 clk_mux_flags, spinlock_t *lock) |
95 | { | 95 | { |
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index a24b121747ac..ddade8759ea9 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c | |||
@@ -1328,7 +1328,7 @@ out: | |||
1328 | */ | 1328 | */ |
1329 | struct clk *clk_register(struct device *dev, const char *name, | 1329 | struct clk *clk_register(struct device *dev, const char *name, |
1330 | const struct clk_ops *ops, struct clk_hw *hw, | 1330 | const struct clk_ops *ops, struct clk_hw *hw, |
1331 | char **parent_names, u8 num_parents, unsigned long flags) | 1331 | const char **parent_names, u8 num_parents, unsigned long flags) |
1332 | { | 1332 | { |
1333 | struct clk *clk; | 1333 | struct clk *clk; |
1334 | 1334 | ||