diff options
author | Alessandro Guido <alessandro.guido@gmail.com> | 2008-04-18 16:31:13 -0400 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2008-04-28 16:27:08 -0400 |
commit | 30d221db4439973076953e2ed44344fa92d1d09f (patch) | |
tree | 15e97af8ffa193aede37f7bcb50fe9e905a41dcb /drivers/cpufreq | |
parent | 605400a8ab44131698b206cbe253e48380daaa69 (diff) |
[CPUFREQ] allow use of the powersave governor as the default one
Allow use of the powersave cpufreq governor as the default one for EMBEDDED
configs.
Signed-off-by: Alessandro Guido <alessandro.guido@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/Kconfig | 9 | ||||
-rw-r--r-- | drivers/cpufreq/cpufreq_powersave.c | 8 |
2 files changed, 15 insertions, 2 deletions
diff --git a/drivers/cpufreq/Kconfig b/drivers/cpufreq/Kconfig index c159ae64eeb2..5f076aef74fa 100644 --- a/drivers/cpufreq/Kconfig +++ b/drivers/cpufreq/Kconfig | |||
@@ -69,6 +69,15 @@ config CPU_FREQ_DEFAULT_GOV_PERFORMANCE | |||
69 | the frequency statically to the highest frequency supported by | 69 | the frequency statically to the highest frequency supported by |
70 | the CPU. | 70 | the CPU. |
71 | 71 | ||
72 | config CPU_FREQ_DEFAULT_GOV_POWERSAVE | ||
73 | bool "powersave" | ||
74 | depends on EMBEDDED | ||
75 | select CPU_FREQ_GOV_POWERSAVE | ||
76 | help | ||
77 | Use the CPUFreq governor 'powersave' as default. This sets | ||
78 | the frequency statically to the lowest frequency supported by | ||
79 | the CPU. | ||
80 | |||
72 | config CPU_FREQ_DEFAULT_GOV_USERSPACE | 81 | config CPU_FREQ_DEFAULT_GOV_USERSPACE |
73 | bool "userspace" | 82 | bool "userspace" |
74 | select CPU_FREQ_GOV_USERSPACE | 83 | select CPU_FREQ_GOV_USERSPACE |
diff --git a/drivers/cpufreq/cpufreq_powersave.c b/drivers/cpufreq/cpufreq_powersave.c index 13fe06b94b0a..88d2f44fba48 100644 --- a/drivers/cpufreq/cpufreq_powersave.c +++ b/drivers/cpufreq/cpufreq_powersave.c | |||
@@ -35,12 +35,12 @@ static int cpufreq_governor_powersave(struct cpufreq_policy *policy, | |||
35 | return 0; | 35 | return 0; |
36 | } | 36 | } |
37 | 37 | ||
38 | static struct cpufreq_governor cpufreq_gov_powersave = { | 38 | struct cpufreq_governor cpufreq_gov_powersave = { |
39 | .name = "powersave", | 39 | .name = "powersave", |
40 | .governor = cpufreq_governor_powersave, | 40 | .governor = cpufreq_governor_powersave, |
41 | .owner = THIS_MODULE, | 41 | .owner = THIS_MODULE, |
42 | }; | 42 | }; |
43 | 43 | EXPORT_SYMBOL(cpufreq_gov_powersave); | |
44 | 44 | ||
45 | static int __init cpufreq_gov_powersave_init(void) | 45 | static int __init cpufreq_gov_powersave_init(void) |
46 | { | 46 | { |
@@ -58,5 +58,9 @@ MODULE_AUTHOR("Dominik Brodowski <linux@brodo.de>"); | |||
58 | MODULE_DESCRIPTION("CPUfreq policy governor 'powersave'"); | 58 | MODULE_DESCRIPTION("CPUfreq policy governor 'powersave'"); |
59 | MODULE_LICENSE("GPL"); | 59 | MODULE_LICENSE("GPL"); |
60 | 60 | ||
61 | #ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE | ||
62 | fs_initcall(cpufreq_gov_powersave_init); | ||
63 | #else | ||
61 | module_init(cpufreq_gov_powersave_init); | 64 | module_init(cpufreq_gov_powersave_init); |
65 | #endif | ||
62 | module_exit(cpufreq_gov_powersave_exit); | 66 | module_exit(cpufreq_gov_powersave_exit); |