diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-02-17 13:22:52 +0100 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2008-03-05 14:45:31 -0500 |
commit | f6ebef30e21638417f8f5443ba393d63a0c27e2b (patch) | |
tree | 2d148d36edb829a2f1d05a69aaeec38c0d4886d7 /drivers/cpufreq/cpufreq_stats.c | |
parent | 0e5aa8d6218f9914b23e492debf653bda5598af3 (diff) | |
download | linux-3.10-f6ebef30e21638417f8f5443ba393d63a0c27e2b.tar.gz linux-3.10-f6ebef30e21638417f8f5443ba393d63a0c27e2b.tar.bz2 linux-3.10-f6ebef30e21638417f8f5443ba393d63a0c27e2b.zip |
[CPUFREQ] fix section mismatch warnings
Fix the following warnings:
WARNING: vmlinux.o(.text+0xfe6711): Section mismatch in reference from the function cpufreq_unregister_driver() to the variable .cpuinit.data:cpufreq_cpu_notifier
WARNING: vmlinux.o(.text+0xfe68af): Section mismatch in reference from the function cpufreq_register_driver() to the variable .cpuinit.data:cpufreq_cpu_notifier
WARNING: vmlinux.o(.exit.text+0xc4fa): Section mismatch in reference from the function cpufreq_stats_exit() to the variable .cpuinit.data:cpufreq_stat_cpu_notifier
The warnings were casued by references to unregister_hotcpu_notifier()
from normal functions or exit functions.
This is flagged by modpost as a potential error because
it does not know that for the non HOTPLUG_CPU
scenario the unregister_hotcpu_notifier() is a nop.
Silence the warning by replacing the __initdata
annotation with a __refdata annotation.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Dave Jones <davej@codemonkey.org.uk>
Diffstat (limited to 'drivers/cpufreq/cpufreq_stats.c')
-rw-r--r-- | drivers/cpufreq/cpufreq_stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/cpufreq_stats.c b/drivers/cpufreq/cpufreq_stats.c index 1b8312b0200..070421a5480 100644 --- a/drivers/cpufreq/cpufreq_stats.c +++ b/drivers/cpufreq/cpufreq_stats.c @@ -323,7 +323,7 @@ static int __cpuinit cpufreq_stat_cpu_callback(struct notifier_block *nfb, return NOTIFY_OK; } -static struct notifier_block cpufreq_stat_cpu_notifier __cpuinitdata = +static struct notifier_block cpufreq_stat_cpu_notifier __refdata = { .notifier_call = cpufreq_stat_cpu_callback, }; |