diff options
author | Boris BREZILLON <b.brezillon@overkiz.com> | 2013-12-16 16:25:27 -0500 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2013-12-19 10:00:24 -0500 |
commit | 7736c715d08a53ad89d17b63b8f5124adce39f67 (patch) | |
tree | 6aa88ce913a5dd17f66ceb541886772c12aa65c1 | |
parent | b46e837d8ef1f3c777bbf9513e2cdb5d87d6c374 (diff) |
clk: at91: fix pmc_clk_ids data type attriubte
Fix pmc_clk_ids data type attribute (__initdata -> __initconst).
Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Acked-by: Mike Turquette <mturquette@linaro.org>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
-rw-r--r-- | drivers/clk/at91/pmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/at91/pmc.c b/drivers/clk/at91/pmc.c index 7b9db603b936..4c03eda47406 100644 --- a/drivers/clk/at91/pmc.c +++ b/drivers/clk/at91/pmc.c | |||
@@ -228,7 +228,7 @@ out_free_pmc: | |||
228 | return NULL; | 228 | return NULL; |
229 | } | 229 | } |
230 | 230 | ||
231 | static const struct of_device_id pmc_clk_ids[] __initdata = { | 231 | static const struct of_device_id pmc_clk_ids[] __initconst = { |
232 | /* Main clock */ | 232 | /* Main clock */ |
233 | { | 233 | { |
234 | .compatible = "atmel,at91rm9200-clk-main", | 234 | .compatible = "atmel,at91rm9200-clk-main", |