]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
clk/exynos4: Fix compilation warning
authorSachin Kamat <sachin.kamat@linaro.org>
Mon, 26 May 2014 04:16:28 +0000 (09:46 +0530)
committerMike Turquette <mturquette@linaro.org>
Wed, 28 May 2014 07:56:45 +0000 (00:56 -0700)
Fixes the following warning:
WARNING: drivers/built-in.o(.text.unlikely+0x2c50): Section mismatch in reference from the function exynos4_clk_sleep_init() to the (unknown reference) .init.data:(unknown)
   The function exynos4_clk_sleep_init() references
   the (unknown reference) __initdata (unknown).
   This is often because exynos4_clk_sleep_init lacks a __initdata
   annotation or the annotation of (unknown) is wrong.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
drivers/clk/samsung/clk-exynos4.c

index b4f9672101755e6e451d882e04299865807b457a..99980da672a8d0fb3370415043ae5c88414f0ec7 100644 (file)
@@ -324,7 +324,7 @@ static struct syscore_ops exynos4_clk_syscore_ops = {
        .resume = exynos4_clk_resume,
 };
 
-static void exynos4_clk_sleep_init(void)
+static void __init exynos4_clk_sleep_init(void)
 {
        exynos4_save_common = samsung_clk_alloc_reg_dump(exynos4_clk_regs,
                                        ARRAY_SIZE(exynos4_clk_regs));
@@ -359,7 +359,7 @@ err_warn:
                __func__);
 }
 #else
-static void exynos4_clk_sleep_init(void) {}
+static void __init exynos4_clk_sleep_init(void) {}
 #endif
 
 /* list of all parent clock list */