diff options
author | Rafael J. Wysocki <rjw@sisk.pl> | 2011-03-10 21:13:05 +0100 |
---|---|---|
committer | Nicolas Pitre <nicolas.pitre@linaro.org> | 2011-03-27 22:04:20 -0400 |
commit | 2e29df8ed731bd869a7c76ec1f950571ee2c2154 (patch) | |
tree | 78f5f07f4478f6f8d38d0d532d0daf64979e7e60 /arch/arm/mach-exynos4 | |
parent | 22c287f176bfe420328ebc791d07a88ce27ace84 (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>
(cherry-picked from 7ca64e2)
Diffstat (limited to 'arch/arm/mach-exynos4')
-rw-r--r-- | arch/arm/mach-exynos4/cpufreq.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-exynos4/cpufreq.c b/arch/arm/mach-exynos4/cpufreq.c index a16ac35747a..a1bd258f0c4 100644 --- a/arch/arm/mach-exynos4/cpufreq.c +++ b/arch/arm/mach-exynos4/cpufreq.c @@ -452,8 +452,7 @@ static int exynos4_target(struct cpufreq_policy *policy, } #ifdef CONFIG_PM -static int exynos4_cpufreq_suspend(struct cpufreq_policy *policy, - pm_message_t pmsg) +static int exynos4_cpufreq_suspend(struct cpufreq_policy *policy) { return 0; } |