diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-08-08 10:01:26 +0530 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-08-08 22:35:21 -0700 |
commit | 18f5863e3be3a5de521f5a35e994a9917450d3c2 (patch) | |
tree | bfaa78caaa7e675400a2cb02d678a6587e6b5060 /drivers/clk | |
parent | 4c3b2404b4ef4c70f6b8a424fa1e62c86709569f (diff) |
clk: prima2: Fix incorrect placement of __initdata
__initdata 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>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/clk-prima2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-prima2.c b/drivers/clk/clk-prima2.c index 643ca653fef0..5ab95f1ad579 100644 --- a/drivers/clk/clk-prima2.c +++ b/drivers/clk/clk-prima2.c @@ -1034,7 +1034,7 @@ enum prima2_clk_index { usb0, usb1, maxclk, }; -static __initdata struct clk_hw* prima2_clk_hw_array[maxclk] = { +static struct clk_hw *prima2_clk_hw_array[maxclk] __initdata = { NULL, /* dummy */ NULL, &clk_pll1.hw, |