[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>

authored by Sam Ravnborg and committed by Dave Jones f6ebef30 0e5aa8d6

+2 -2
+1 -1
drivers/cpufreq/cpufreq.c
··· 1777 1777 return NOTIFY_OK; 1778 1778 } 1779 1779 1780 - static struct notifier_block __cpuinitdata cpufreq_cpu_notifier = 1780 + static struct notifier_block __refdata cpufreq_cpu_notifier = 1781 1781 { 1782 1782 .notifier_call = cpufreq_cpu_callback, 1783 1783 };
+1 -1
drivers/cpufreq/cpufreq_stats.c
··· 323 323 return NOTIFY_OK; 324 324 } 325 325 326 - static struct notifier_block cpufreq_stat_cpu_notifier __cpuinitdata = 326 + static struct notifier_block cpufreq_stat_cpu_notifier __refdata = 327 327 { 328 328 .notifier_call = cpufreq_stat_cpu_callback, 329 329 };