diff options
author | Thomas Renninger <trenn@suse.de> | 2009-04-22 07:48:31 -0400 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2009-06-15 11:49:41 -0400 |
commit | 4f4d1ad6ee69027f51f9d137f7e7d3c863cbc53d (patch) | |
tree | ce64f81a573ac07c78abb835a84bc59c31c9cb18 /drivers/cpufreq/cpufreq_ondemand.c | |
parent | 86e13684aa77f07c77db352f437d9e53a84dde90 (diff) |
[CPUFREQ] Only set sampling_rate_max deprecated, sampling_rate_min is useful
Update the documentation accordingly.
Cleanup and use printk_once.
Signed-off-by: Thomas Renninger <trenn@suse.de>
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'drivers/cpufreq/cpufreq_ondemand.c')
-rw-r--r-- | drivers/cpufreq/cpufreq_ondemand.c | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c index a235114c3d85..1911d1729353 100644 --- a/drivers/cpufreq/cpufreq_ondemand.c +++ b/drivers/cpufreq/cpufreq_ondemand.c | |||
@@ -205,27 +205,13 @@ static void ondemand_powersave_bias_init(void) | |||
205 | /************************** sysfs interface ************************/ | 205 | /************************** sysfs interface ************************/ |
206 | static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf) | 206 | static ssize_t show_sampling_rate_max(struct cpufreq_policy *policy, char *buf) |
207 | { | 207 | { |
208 | static int print_once; | 208 | printk_once(KERN_INFO "CPUFREQ: ondemand sampling_rate_max " |
209 | 209 | "sysfs file is deprecated - used by: %s\n", current->comm); | |
210 | if (!print_once) { | ||
211 | printk(KERN_INFO "CPUFREQ: ondemand sampling_rate_max " | ||
212 | "sysfs file is deprecated - used by: %s\n", | ||
213 | current->comm); | ||
214 | print_once = 1; | ||
215 | } | ||
216 | return sprintf(buf, "%u\n", -1U); | 210 | return sprintf(buf, "%u\n", -1U); |
217 | } | 211 | } |
218 | 212 | ||
219 | static ssize_t show_sampling_rate_min(struct cpufreq_policy *policy, char *buf) | 213 | static ssize_t show_sampling_rate_min(struct cpufreq_policy *policy, char *buf) |
220 | { | 214 | { |
221 | static int print_once; | ||
222 | |||
223 | if (!print_once) { | ||
224 | printk(KERN_INFO "CPUFREQ: ondemand sampling_rate_min " | ||
225 | "sysfs file is deprecated - used by: %s\n", | ||
226 | current->comm); | ||
227 | print_once = 1; | ||
228 | } | ||
229 | return sprintf(buf, "%u\n", min_sampling_rate); | 215 | return sprintf(buf, "%u\n", min_sampling_rate); |
230 | } | 216 | } |
231 | 217 | ||