clk: nomadik: Fix incorrect placement of __initconst
authorSachin Kamat <sachin.kamat@linaro.org>
Mon, 12 Aug 2013 09:14:00 +0000 (14:44 +0530)
committerMike Turquette <mturquette@linaro.org>
Wed, 28 Aug 2013 01:34:00 +0000 (18:34 -0700)
__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>
drivers/clk/clk-nomadik.c

index 6d819a3..51410c2 100644 (file)
@@ -479,12 +479,12 @@ static void __init of_nomadik_src_clk_setup(struct device_node *np)
                of_clk_add_provider(np, of_clk_src_simple_get, clk);
 }
 
-static const __initconst struct of_device_id nomadik_src_match[] = {
+static const struct of_device_id nomadik_src_match[] __initconst = {
        { .compatible = "stericsson,nomadik-src" },
        { /* sentinel */ }
 };
 
-static const __initconst struct of_device_id nomadik_src_clk_match[] = {
+static const struct of_device_id nomadik_src_clk_match[] __initconst = {
        {
                .compatible = "fixed-clock",
                .data = of_fixed_clk_setup,