diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-08-12 05:14:00 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-08-27 21:34:00 -0400 |
commit | 330d83b1fb255963dcfd20cbdd0be34c0ed7da89 (patch) | |
tree | 1a40d9e030d7b67fae71956a49ae1502154d22af /drivers/clk | |
parent | 3bbc55dd1724bcd2d393f767016c3674adb2ede6 (diff) |
clk: nomadik: Fix incorrect placement of __initconst
__initconst should be placed between the variable name and equal
sign for the variable to be placed in the intended section.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/clk-nomadik.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/clk-nomadik.c b/drivers/clk/clk-nomadik.c index 6d819a37f647..51410c2ac2cb 100644 --- a/drivers/clk/clk-nomadik.c +++ b/drivers/clk/clk-nomadik.c | |||
@@ -479,12 +479,12 @@ static void __init of_nomadik_src_clk_setup(struct device_node *np) | |||
479 | of_clk_add_provider(np, of_clk_src_simple_get, clk); | 479 | of_clk_add_provider(np, of_clk_src_simple_get, clk); |
480 | } | 480 | } |
481 | 481 | ||
482 | static const __initconst struct of_device_id nomadik_src_match[] = { | 482 | static const struct of_device_id nomadik_src_match[] __initconst = { |
483 | { .compatible = "stericsson,nomadik-src" }, | 483 | { .compatible = "stericsson,nomadik-src" }, |
484 | { /* sentinel */ } | 484 | { /* sentinel */ } |
485 | }; | 485 | }; |
486 | 486 | ||
487 | static const __initconst struct of_device_id nomadik_src_clk_match[] = { | 487 | static const struct of_device_id nomadik_src_clk_match[] __initconst = { |
488 | { | 488 | { |
489 | .compatible = "fixed-clock", | 489 | .compatible = "fixed-clock", |
490 | .data = of_fixed_clk_setup, | 490 | .data = of_fixed_clk_setup, |