aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2012-03-21 16:01:20 -0400
committerMike Turquette <mturquette@linaro.org>2012-04-24 19:37:39 -0400
commitd305fb78f31209596c9135d396a0d3af7ac86947 (patch)
tree456b810cdd4c3081b465a387fb04a31fb9fce399 /drivers/clk
parent7e87aed965fa7a642fc299af96d370dad7b5b814 (diff)
clk: Constify parent name arrays
Drivers should be able to declare their arrays of parent names as const so the APIs need to accept const arguments. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> [mturquette@linaro.org: constified gate] Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r--drivers/clk/clk-mux.c2
-rw-r--r--drivers/clk/clk.c2
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 = {
89EXPORT_SYMBOL_GPL(clk_mux_ops); 89EXPORT_SYMBOL_GPL(clk_mux_ops);
90 90
91struct clk *clk_register_mux(struct device *dev, const char *name, 91struct 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 */
1329struct clk *clk_register(struct device *dev, const char *name, 1329struct 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