diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-03-21 21:01:20 +0100 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2012-04-25 01:37:39 +0200 |
commit | d305fb78f31209596c9135d396a0d3af7ac86947 (patch) | |
tree | 456b810cdd4c3081b465a387fb04a31fb9fce399 /drivers/clk/clk.c | |
parent | clk: Remove comment for end of CONFIG_COMMON_CLK section (diff) | |
download | linux-d305fb78f31209596c9135d396a0d3af7ac86947.tar.xz linux-d305fb78f31209596c9135d396a0d3af7ac86947.zip |
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/clk.c')
-rw-r--r-- | drivers/clk/clk.c | 2 |
1 files changed, 1 insertions, 1 deletions
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: */ struct clk *clk_register(struct device *dev, const char *name, const struct clk_ops *ops, struct clk_hw *hw, - char **parent_names, u8 num_parents, unsigned long flags) + const char **parent_names, u8 num_parents, unsigned long flags) { struct clk *clk; |