Commit ac274045 authored by Martin Kaiser's avatar Martin Kaiser Committed by Ben Hutchings

clk: samsung: mark s3c...._clk_sleep_init() as __init

commit 02c952c8 upstream.

These functions are referencing s3c...._clk_regs[], which are marked as
__initdata. When compiling with CONFIG_DEBUG_SECTION_MISMATCH=y, this
produces warnings like

WARNING: vmlinux.o(.text+0x198350):
Section mismatch in reference from the function s3c2410_clk_sleep_init()
to the (unknown reference) .init.data:(unknown)

Mark the s3c...._clk_sleep_init() functions as __init in
order to fix this.

Fixes: ca2e90ac ("clk: samsung: add clock controller driver for s3c2412")
Signed-off-by: default avatarMartin Kaiser <martin@kaiser.cx>
Reviewed-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
Reviewed-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent 30d833f2
...@@ -78,7 +78,7 @@ static struct syscore_ops s3c2410_clk_syscore_ops = { ...@@ -78,7 +78,7 @@ static struct syscore_ops s3c2410_clk_syscore_ops = {
.resume = s3c2410_clk_resume, .resume = s3c2410_clk_resume,
}; };
static void s3c2410_clk_sleep_init(void) static void __init s3c2410_clk_sleep_init(void)
{ {
s3c2410_save = samsung_clk_alloc_reg_dump(s3c2410_clk_regs, s3c2410_save = samsung_clk_alloc_reg_dump(s3c2410_clk_regs,
ARRAY_SIZE(s3c2410_clk_regs)); ARRAY_SIZE(s3c2410_clk_regs));
...@@ -92,7 +92,7 @@ static void s3c2410_clk_sleep_init(void) ...@@ -92,7 +92,7 @@ static void s3c2410_clk_sleep_init(void)
return; return;
} }
#else #else
static void s3c2410_clk_sleep_init(void) {} static void __init s3c2410_clk_sleep_init(void) {}
#endif #endif
PNAME(fclk_p) = { "mpll", "div_slow" }; PNAME(fclk_p) = { "mpll", "div_slow" };
......
...@@ -69,7 +69,7 @@ static struct syscore_ops s3c2412_clk_syscore_ops = { ...@@ -69,7 +69,7 @@ static struct syscore_ops s3c2412_clk_syscore_ops = {
.resume = s3c2412_clk_resume, .resume = s3c2412_clk_resume,
}; };
static void s3c2412_clk_sleep_init(void) static void __init s3c2412_clk_sleep_init(void)
{ {
s3c2412_save = samsung_clk_alloc_reg_dump(s3c2412_clk_regs, s3c2412_save = samsung_clk_alloc_reg_dump(s3c2412_clk_regs,
ARRAY_SIZE(s3c2412_clk_regs)); ARRAY_SIZE(s3c2412_clk_regs));
...@@ -83,7 +83,7 @@ static void s3c2412_clk_sleep_init(void) ...@@ -83,7 +83,7 @@ static void s3c2412_clk_sleep_init(void)
return; return;
} }
#else #else
static void s3c2412_clk_sleep_init(void) {} static void __init s3c2412_clk_sleep_init(void) {}
#endif #endif
static struct clk_div_table divxti_d[] = { static struct clk_div_table divxti_d[] = {
......
...@@ -89,7 +89,7 @@ static struct syscore_ops s3c2443_clk_syscore_ops = { ...@@ -89,7 +89,7 @@ static struct syscore_ops s3c2443_clk_syscore_ops = {
.resume = s3c2443_clk_resume, .resume = s3c2443_clk_resume,
}; };
static void s3c2443_clk_sleep_init(void) static void __init s3c2443_clk_sleep_init(void)
{ {
s3c2443_save = samsung_clk_alloc_reg_dump(s3c2443_clk_regs, s3c2443_save = samsung_clk_alloc_reg_dump(s3c2443_clk_regs,
ARRAY_SIZE(s3c2443_clk_regs)); ARRAY_SIZE(s3c2443_clk_regs));
...@@ -103,7 +103,7 @@ static void s3c2443_clk_sleep_init(void) ...@@ -103,7 +103,7 @@ static void s3c2443_clk_sleep_init(void)
return; return;
} }
#else #else
static void s3c2443_clk_sleep_init(void) {} static void __init s3c2443_clk_sleep_init(void) {}
#endif #endif
PNAME(epllref_p) = { "mpllref", "mpllref", "xti", "ext" }; PNAME(epllref_p) = { "mpllref", "mpllref", "xti", "ext" };
......
...@@ -122,7 +122,7 @@ static struct syscore_ops s3c64xx_clk_syscore_ops = { ...@@ -122,7 +122,7 @@ static struct syscore_ops s3c64xx_clk_syscore_ops = {
.resume = s3c64xx_clk_resume, .resume = s3c64xx_clk_resume,
}; };
static void s3c64xx_clk_sleep_init(void) static void __init s3c64xx_clk_sleep_init(void)
{ {
s3c64xx_save_common = samsung_clk_alloc_reg_dump(s3c64xx_clk_regs, s3c64xx_save_common = samsung_clk_alloc_reg_dump(s3c64xx_clk_regs,
ARRAY_SIZE(s3c64xx_clk_regs)); ARRAY_SIZE(s3c64xx_clk_regs));
...@@ -146,7 +146,7 @@ static void s3c64xx_clk_sleep_init(void) ...@@ -146,7 +146,7 @@ static void s3c64xx_clk_sleep_init(void)
__func__); __func__);
} }
#else #else
static void s3c64xx_clk_sleep_init(void) {} static void __init s3c64xx_clk_sleep_init(void) {}
#endif #endif
/* List of parent clocks common for all S3C64xx SoCs. */ /* List of parent clocks common for all S3C64xx SoCs. */
......
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