From de61a4105470839963926316a3c64f33222d924d Mon Sep 17 00:00:00 2001 From: Antti P Miettinen Date: Tue, 27 Dec 2011 12:09:56 +0200 Subject: cpufreq: Export user_policy min/max Add sysfs nodes for user_policy min and max settings. Bug 888312 Change-Id: Ife8ec07f8faebc0c04e7ecf6e24976a311bad73b Reviewed-on: http://git-master/r/72201 Signed-off-by: Antti P Miettinen Signed-off-by: Varun Wadekar Reviewed-on: http://git-master/r/75882 Reviewed-by: Automatic_Commit_Validation_User --- drivers/cpufreq/cpufreq.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'drivers/cpufreq') diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 987a165ede26..dda10dcd09f3 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c @@ -364,6 +364,8 @@ show_one(cpuinfo_transition_latency, cpuinfo.transition_latency); show_one(scaling_min_freq, min); show_one(scaling_max_freq, max); show_one(scaling_cur_freq, cur); +show_one(policy_min_freq, user_policy.min); +show_one(policy_max_freq, user_policy.max); static int __cpufreq_set_policy(struct cpufreq_policy *data, struct cpufreq_policy *policy); @@ -582,6 +584,8 @@ cpufreq_freq_attr_rw(scaling_min_freq); cpufreq_freq_attr_rw(scaling_max_freq); cpufreq_freq_attr_rw(scaling_governor); cpufreq_freq_attr_rw(scaling_setspeed); +cpufreq_freq_attr_ro(policy_min_freq); +cpufreq_freq_attr_ro(policy_max_freq); static struct attribute *default_attrs[] = { &cpuinfo_min_freq.attr, @@ -595,6 +599,8 @@ static struct attribute *default_attrs[] = { &scaling_driver.attr, &scaling_available_governors.attr, &scaling_setspeed.attr, + &policy_min_freq.attr, + &policy_max_freq.attr, NULL }; -- cgit v1.2.3