diff options
author | Arnd Bergmann <arnd@arndb.de> | 2015-02-18 15:55:03 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2015-02-19 00:36:53 -0500 |
commit | 61882b63171736571e1139ab5aa929e3bb336016 (patch) | |
tree | 024b10fb3f9e4ac77af9fcc39ad31930e74f3147 /drivers/cpufreq | |
parent | d4d4eda23794c701442e55129dd4f8f2fefd5e4d (diff) |
cpufreq: s3c: remove incorrect __init annotations
The two functions s3c2416_cpufreq_driver_init and s3c_cpufreq_register
are marked init but are called from a context that might be run after
the __init sections are discarded, as the compiler points out:
WARNING: vmlinux.o(.data+0x1ad9dc): Section mismatch in reference from the variable s3c2416_cpufreq_driver to the function .init.text:s3c2416_cpufreq_driver_init()
WARNING: drivers/built-in.o(.text+0x35b5dc): Section mismatch in reference from the function s3c2410a_cpufreq_add() to the function .init.text:s3c_cpufreq_register()
This removes the __init markings.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Cc: All applicable <stable@vger.kernel.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/s3c2416-cpufreq.c | 4 | ||||
-rw-r--r-- | drivers/cpufreq/s3c24xx-cpufreq.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/cpufreq/s3c2416-cpufreq.c b/drivers/cpufreq/s3c2416-cpufreq.c index 2fd53eaaec20..d6d425773fa4 100644 --- a/drivers/cpufreq/s3c2416-cpufreq.c +++ b/drivers/cpufreq/s3c2416-cpufreq.c | |||
@@ -263,7 +263,7 @@ out: | |||
263 | } | 263 | } |
264 | 264 | ||
265 | #ifdef CONFIG_ARM_S3C2416_CPUFREQ_VCORESCALE | 265 | #ifdef CONFIG_ARM_S3C2416_CPUFREQ_VCORESCALE |
266 | static void __init s3c2416_cpufreq_cfg_regulator(struct s3c2416_data *s3c_freq) | 266 | static void s3c2416_cpufreq_cfg_regulator(struct s3c2416_data *s3c_freq) |
267 | { | 267 | { |
268 | int count, v, i, found; | 268 | int count, v, i, found; |
269 | struct cpufreq_frequency_table *pos; | 269 | struct cpufreq_frequency_table *pos; |
@@ -333,7 +333,7 @@ static struct notifier_block s3c2416_cpufreq_reboot_notifier = { | |||
333 | .notifier_call = s3c2416_cpufreq_reboot_notifier_evt, | 333 | .notifier_call = s3c2416_cpufreq_reboot_notifier_evt, |
334 | }; | 334 | }; |
335 | 335 | ||
336 | static int __init s3c2416_cpufreq_driver_init(struct cpufreq_policy *policy) | 336 | static int s3c2416_cpufreq_driver_init(struct cpufreq_policy *policy) |
337 | { | 337 | { |
338 | struct s3c2416_data *s3c_freq = &s3c2416_cpufreq; | 338 | struct s3c2416_data *s3c_freq = &s3c2416_cpufreq; |
339 | struct cpufreq_frequency_table *pos; | 339 | struct cpufreq_frequency_table *pos; |
diff --git a/drivers/cpufreq/s3c24xx-cpufreq.c b/drivers/cpufreq/s3c24xx-cpufreq.c index d00f1cee4509..bd340a1ca87d 100644 --- a/drivers/cpufreq/s3c24xx-cpufreq.c +++ b/drivers/cpufreq/s3c24xx-cpufreq.c | |||
@@ -454,7 +454,7 @@ static struct cpufreq_driver s3c24xx_driver = { | |||
454 | }; | 454 | }; |
455 | 455 | ||
456 | 456 | ||
457 | int __init s3c_cpufreq_register(struct s3c_cpufreq_info *info) | 457 | int s3c_cpufreq_register(struct s3c_cpufreq_info *info) |
458 | { | 458 | { |
459 | if (!info || !info->name) { | 459 | if (!info || !info->name) { |
460 | printk(KERN_ERR "%s: failed to pass valid information\n", | 460 | printk(KERN_ERR "%s: failed to pass valid information\n", |