aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/cpufreq.h
diff options
context:
space:
mode:
authorRafael J. Wysocki <rjw@sisk.pl>2011-03-10 21:13:05 +0100
committerDave Jones <davej@redhat.com>2011-03-16 17:54:33 -0400
commit7ca64e2d2859e96a325c28678b5fdb5e17a5764b (patch)
tree8988c72fd55317e1c9f6b8da8f1d62f7ec1ecb8c /include/linux/cpufreq.h
parent326c86deaed54ad1b364fcafe5073f563671eb58 (diff)
downloadkernel_samsung_smdk4412-7ca64e2d2859e96a325c28678b5fdb5e17a5764b.zip
kernel_samsung_smdk4412-7ca64e2d2859e96a325c28678b5fdb5e17a5764b.tar.gz
kernel_samsung_smdk4412-7ca64e2d2859e96a325c28678b5fdb5e17a5764b.tar.bz2
[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 'include/linux/cpufreq.h')
-rw-r--r--include/linux/cpufreq.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h
index f2fe598..9343dd3 100644
--- a/include/linux/cpufreq.h
+++ b/include/linux/cpufreq.h
@@ -230,7 +230,7 @@ struct cpufreq_driver {
int (*bios_limit) (int cpu, unsigned int *limit);
int (*exit) (struct cpufreq_policy *policy);
- int (*suspend) (struct cpufreq_policy *policy, pm_message_t pmsg);
+ int (*suspend) (struct cpufreq_policy *policy);
int (*resume) (struct cpufreq_policy *policy);
struct freq_attr **attr;
};