aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk/pxa
diff options
context:
space:
mode:
authorStephen Boyd <sboyd@codeaurora.org>2015-06-11 16:08:51 -0700
committerStephen Boyd <sboyd@codeaurora.org>2015-06-12 14:30:12 -0700
commit22109785163310666cf9913bafbcc11c5aebe68a (patch)
treee2d7fdb63e027683b99e3728c4975e463d137a0f /drivers/clk/pxa
parentclk: Move debug_node field under DEBUG_FS flag in struct clk_core (diff)
downloadlinux-dev-22109785163310666cf9913bafbcc11c5aebe68a.tar.xz
linux-dev-22109785163310666cf9913bafbcc11c5aebe68a.zip
clk: pxa: Fix const discarding warning
A recent change to mark parent names as const missed this struct member so we get warnings like: drivers/clk/pxa/clk-pxa25x.c:122:2: warning: initialization discards 'const' qualifier from pointer target type Fix it. Reported-by: kbuild test robot <fengguang.wu@intel.com> Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/pxa')
-rw-r--r--drivers/clk/pxa/clk-pxa.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/pxa/clk-pxa.h b/drivers/clk/pxa/clk-pxa.h
index 7bf532dca709..d1de805df867 100644
--- a/drivers/clk/pxa/clk-pxa.h
+++ b/drivers/clk/pxa/clk-pxa.h
@@ -72,7 +72,7 @@ struct desc_clk_cken {
const char *name;
const char *dev_id;
const char *con_id;
- const char **parent_names;
+ const char * const *parent_names;
struct clk_fixed_factor lp;
struct clk_fixed_factor hp;
struct clk_gate gate;