]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
arm/imx: fix cpufreq section mismatch
authorRichard Zhao <richard.zhao@linaro.org>
Tue, 13 Dec 2011 06:25:27 +0000 (14:25 +0800)
committerSascha Hauer <s.hauer@pengutronix.de>
Mon, 19 Dec 2011 11:26:05 +0000 (12:26 +0100)
WARNING: arch/arm/plat-mxc/built-in.o(.data+0x488): Section mismatch in reference from the variable mxc_driver to the function .init.text:mxc_cpufreq_init()
The variable mxc_driver references
the function __init mxc_cpufreq_init()
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the variable:
*_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console

Signed-off-by: Richard Zhao <richard.zhao@linaro.org>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
arch/arm/plat-mxc/cpufreq.c

index adbff706ef6f88f0757a6f13d5d2f748d56109a3..73db34bf588ae7985fc50c71e9e2a4aa3af7a5f8 100644 (file)
@@ -98,7 +98,7 @@ static int mxc_set_target(struct cpufreq_policy *policy,
        return ret;
 }
 
-static int __init mxc_cpufreq_init(struct cpufreq_policy *policy)
+static int mxc_cpufreq_init(struct cpufreq_policy *policy)
 {
        int ret;
        int i;