diff options
author | Rafael J. Wysocki <rjw@sisk.pl> | 2011-03-10 15:13:05 -0500 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2011-03-16 17:54:33 -0400 |
commit | 7ca64e2d2859e96a325c28678b5fdb5e17a5764b (patch) | |
tree | 8988c72fd55317e1c9f6b8da8f1d62f7ec1ecb8c /arch/arm | |
parent | 326c86deaed54ad1b364fcafe5073f563671eb58 (diff) |
[CPUFREQ] Remove the pm_message_t argument from driver suspend
None of the existing cpufreq drivers uses the second argument of
its .suspend() callback (which isn't useful anyway), so remove it.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-s5pv210/cpufreq.c | 3 | ||||
-rw-r--r-- | arch/arm/mach-s5pv310/cpufreq.c | 3 | ||||
-rw-r--r-- | arch/arm/plat-s3c24xx/cpu-freq.c | 2 |
3 files changed, 3 insertions, 5 deletions
diff --git a/arch/arm/mach-s5pv210/cpufreq.c b/arch/arm/mach-s5pv210/cpufreq.c index a6f22920a2c2..22046e2f53c2 100644 --- a/arch/arm/mach-s5pv210/cpufreq.c +++ b/arch/arm/mach-s5pv210/cpufreq.c | |||
@@ -390,8 +390,7 @@ static int s5pv210_target(struct cpufreq_policy *policy, | |||
390 | } | 390 | } |
391 | 391 | ||
392 | #ifdef CONFIG_PM | 392 | #ifdef CONFIG_PM |
393 | static int s5pv210_cpufreq_suspend(struct cpufreq_policy *policy, | 393 | static int s5pv210_cpufreq_suspend(struct cpufreq_policy *policy) |
394 | pm_message_t pmsg) | ||
395 | { | 394 | { |
396 | return 0; | 395 | return 0; |
397 | } | 396 | } |
diff --git a/arch/arm/mach-s5pv310/cpufreq.c b/arch/arm/mach-s5pv310/cpufreq.c index b04cbc731128..7c08ad7d8887 100644 --- a/arch/arm/mach-s5pv310/cpufreq.c +++ b/arch/arm/mach-s5pv310/cpufreq.c | |||
@@ -458,8 +458,7 @@ static int s5pv310_target(struct cpufreq_policy *policy, | |||
458 | } | 458 | } |
459 | 459 | ||
460 | #ifdef CONFIG_PM | 460 | #ifdef CONFIG_PM |
461 | static int s5pv310_cpufreq_suspend(struct cpufreq_policy *policy, | 461 | static int s5pv310_cpufreq_suspend(struct cpufreq_policy *policy) |
462 | pm_message_t pmsg) | ||
463 | { | 462 | { |
464 | return 0; | 463 | return 0; |
465 | } | 464 | } |
diff --git a/arch/arm/plat-s3c24xx/cpu-freq.c b/arch/arm/plat-s3c24xx/cpu-freq.c index 25a8fc7f512e..eea75ff81d15 100644 --- a/arch/arm/plat-s3c24xx/cpu-freq.c +++ b/arch/arm/plat-s3c24xx/cpu-freq.c | |||
@@ -433,7 +433,7 @@ static int s3c_cpufreq_verify(struct cpufreq_policy *policy) | |||
433 | static struct cpufreq_frequency_table suspend_pll; | 433 | static struct cpufreq_frequency_table suspend_pll; |
434 | static unsigned int suspend_freq; | 434 | static unsigned int suspend_freq; |
435 | 435 | ||
436 | static int s3c_cpufreq_suspend(struct cpufreq_policy *policy, pm_message_t pmsg) | 436 | static int s3c_cpufreq_suspend(struct cpufreq_policy *policy) |
437 | { | 437 | { |
438 | suspend_pll.frequency = clk_get_rate(_clk_mpll); | 438 | suspend_pll.frequency = clk_get_rate(_clk_mpll); |
439 | suspend_pll.index = __raw_readl(S3C2410_MPLLCON); | 439 | suspend_pll.index = __raw_readl(S3C2410_MPLLCON); |