diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-08-12 05:14:03 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-08-27 21:34:40 -0400 |
commit | 4e280d741af5399bc04673b8e49bf6d44455fdce (patch) | |
tree | f670d0a531e94add7120cd14a590ad55f683634b | |
parent | 682dfdc019a4a23aff93e63def077abf0d3f53ac (diff) |
clk: armada-xp: 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: Gregory Clement <gregory.clement@free-electrons.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
-rw-r--r-- | drivers/clk/mvebu/armada-xp.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/clk/mvebu/armada-xp.c b/drivers/clk/mvebu/armada-xp.c index 13b62ceb3407..9922c4475aa8 100644 --- a/drivers/clk/mvebu/armada-xp.c +++ b/drivers/clk/mvebu/armada-xp.c | |||
@@ -40,7 +40,7 @@ | |||
40 | 40 | ||
41 | enum { AXP_CPU_TO_NBCLK, AXP_CPU_TO_HCLK, AXP_CPU_TO_DRAMCLK }; | 41 | enum { AXP_CPU_TO_NBCLK, AXP_CPU_TO_HCLK, AXP_CPU_TO_DRAMCLK }; |
42 | 42 | ||
43 | static const struct coreclk_ratio __initconst axp_coreclk_ratios[] = { | 43 | static const struct coreclk_ratio axp_coreclk_ratios[] __initconst = { |
44 | { .id = AXP_CPU_TO_NBCLK, .name = "nbclk" }, | 44 | { .id = AXP_CPU_TO_NBCLK, .name = "nbclk" }, |
45 | { .id = AXP_CPU_TO_HCLK, .name = "hclk" }, | 45 | { .id = AXP_CPU_TO_HCLK, .name = "hclk" }, |
46 | { .id = AXP_CPU_TO_DRAMCLK, .name = "dramclk" }, | 46 | { .id = AXP_CPU_TO_DRAMCLK, .name = "dramclk" }, |
@@ -52,7 +52,7 @@ static u32 __init axp_get_tclk_freq(void __iomem *sar) | |||
52 | return 250000000; | 52 | return 250000000; |
53 | } | 53 | } |
54 | 54 | ||
55 | static const u32 __initconst axp_cpu_freqs[] = { | 55 | static const u32 axp_cpu_freqs[] __initconst = { |
56 | 1000000000, | 56 | 1000000000, |
57 | 1066000000, | 57 | 1066000000, |
58 | 1200000000, | 58 | 1200000000, |
@@ -89,7 +89,7 @@ static u32 __init axp_get_cpu_freq(void __iomem *sar) | |||
89 | return cpu_freq; | 89 | return cpu_freq; |
90 | } | 90 | } |
91 | 91 | ||
92 | static const int __initconst axp_nbclk_ratios[32][2] = { | 92 | static const int axp_nbclk_ratios[32][2] __initconst = { |
93 | {0, 1}, {1, 2}, {2, 2}, {2, 2}, | 93 | {0, 1}, {1, 2}, {2, 2}, {2, 2}, |
94 | {1, 2}, {1, 2}, {1, 1}, {2, 3}, | 94 | {1, 2}, {1, 2}, {1, 1}, {2, 3}, |
95 | {0, 1}, {1, 2}, {2, 4}, {0, 1}, | 95 | {0, 1}, {1, 2}, {2, 4}, {0, 1}, |
@@ -100,7 +100,7 @@ static const int __initconst axp_nbclk_ratios[32][2] = { | |||
100 | {0, 1}, {0, 1}, {0, 1}, {0, 1}, | 100 | {0, 1}, {0, 1}, {0, 1}, {0, 1}, |
101 | }; | 101 | }; |
102 | 102 | ||
103 | static const int __initconst axp_hclk_ratios[32][2] = { | 103 | static const int axp_hclk_ratios[32][2] __initconst = { |
104 | {0, 1}, {1, 2}, {2, 6}, {2, 3}, | 104 | {0, 1}, {1, 2}, {2, 6}, {2, 3}, |
105 | {1, 3}, {1, 4}, {1, 2}, {2, 6}, | 105 | {1, 3}, {1, 4}, {1, 2}, {2, 6}, |
106 | {0, 1}, {1, 6}, {2, 10}, {0, 1}, | 106 | {0, 1}, {1, 6}, {2, 10}, {0, 1}, |
@@ -111,7 +111,7 @@ static const int __initconst axp_hclk_ratios[32][2] = { | |||
111 | {0, 1}, {0, 1}, {0, 1}, {0, 1}, | 111 | {0, 1}, {0, 1}, {0, 1}, {0, 1}, |
112 | }; | 112 | }; |
113 | 113 | ||
114 | static const int __initconst axp_dramclk_ratios[32][2] = { | 114 | static const int axp_dramclk_ratios[32][2] __initconst = { |
115 | {0, 1}, {1, 2}, {2, 3}, {2, 3}, | 115 | {0, 1}, {1, 2}, {2, 3}, {2, 3}, |
116 | {1, 3}, {1, 2}, {1, 2}, {2, 6}, | 116 | {1, 3}, {1, 2}, {1, 2}, {2, 6}, |
117 | {0, 1}, {1, 3}, {2, 5}, {0, 1}, | 117 | {0, 1}, {1, 3}, {2, 5}, {0, 1}, |
@@ -169,7 +169,7 @@ CLK_OF_DECLARE(axp_core_clk, "marvell,armada-xp-core-clock", | |||
169 | * Clock Gating Control | 169 | * Clock Gating Control |
170 | */ | 170 | */ |
171 | 171 | ||
172 | static const struct clk_gating_soc_desc __initconst axp_gating_desc[] = { | 172 | static const struct clk_gating_soc_desc axp_gating_desc[] __initconst = { |
173 | { "audio", NULL, 0, 0 }, | 173 | { "audio", NULL, 0, 0 }, |
174 | { "ge3", NULL, 1, 0 }, | 174 | { "ge3", NULL, 1, 0 }, |
175 | { "ge2", NULL, 2, 0 }, | 175 | { "ge2", NULL, 2, 0 }, |