Commit 3c701c51 authored by Sachin Kamat's avatar Sachin Kamat Committed by Mike Turquette

clk: exynos4: 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: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarMike Turquette <mturquette@linaro.org>
parent 7cc560de
...@@ -194,7 +194,7 @@ enum exynos4_clks { ...@@ -194,7 +194,7 @@ enum exynos4_clks {
* list of controller registers to be saved and restored during a * list of controller registers to be saved and restored during a
* suspend/resume cycle. * suspend/resume cycle.
*/ */
static __initdata unsigned long exynos4210_clk_save[] = { static unsigned long exynos4210_clk_save[] __initdata = {
E4210_SRC_IMAGE, E4210_SRC_IMAGE,
E4210_SRC_LCD1, E4210_SRC_LCD1,
E4210_SRC_MASK_LCD1, E4210_SRC_MASK_LCD1,
...@@ -205,7 +205,7 @@ static __initdata unsigned long exynos4210_clk_save[] = { ...@@ -205,7 +205,7 @@ static __initdata unsigned long exynos4210_clk_save[] = {
E4210_MPLL_CON0, E4210_MPLL_CON0,
}; };
static __initdata unsigned long exynos4x12_clk_save[] = { static unsigned long exynos4x12_clk_save[] __initdata = {
E4X12_GATE_IP_IMAGE, E4X12_GATE_IP_IMAGE,
E4X12_GATE_IP_PERIR, E4X12_GATE_IP_PERIR,
E4X12_SRC_CAM1, E4X12_SRC_CAM1,
...@@ -214,7 +214,7 @@ static __initdata unsigned long exynos4x12_clk_save[] = { ...@@ -214,7 +214,7 @@ static __initdata unsigned long exynos4x12_clk_save[] = {
E4X12_MPLL_CON0, E4X12_MPLL_CON0,
}; };
static __initdata unsigned long exynos4_clk_regs[] = { static unsigned long exynos4_clk_regs[] __initdata = {
SRC_LEFTBUS, SRC_LEFTBUS,
DIV_LEFTBUS, DIV_LEFTBUS,
GATE_IP_LEFTBUS, GATE_IP_LEFTBUS,
...@@ -978,13 +978,13 @@ static void __init exynos4_clk_register_finpll(unsigned long xom) ...@@ -978,13 +978,13 @@ static void __init exynos4_clk_register_finpll(unsigned long xom)
} }
static __initdata struct of_device_id ext_clk_match[] = { static struct of_device_id ext_clk_match[] __initdata = {
{ .compatible = "samsung,clock-xxti", .data = (void *)0, }, { .compatible = "samsung,clock-xxti", .data = (void *)0, },
{ .compatible = "samsung,clock-xusbxti", .data = (void *)1, }, { .compatible = "samsung,clock-xusbxti", .data = (void *)1, },
{}, {},
}; };
static struct __initdata samsung_pll_clock exynos4_plls[nr_plls] = { static struct samsung_pll_clock exynos4_plls[nr_plls] __initdata = {
[apll] = PLL_A(pll_35xx, fout_apll, "fout_apll", "fin_pll", APLL_LOCK, [apll] = PLL_A(pll_35xx, fout_apll, "fout_apll", "fin_pll", APLL_LOCK,
APLL_CON0, "fout_apll", NULL), APLL_CON0, "fout_apll", NULL),
[mpll] = PLL_A(pll_35xx, fout_mpll, "fout_mpll", "fin_pll", [mpll] = PLL_A(pll_35xx, fout_mpll, "fout_mpll", "fin_pll",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment