diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-08-13 17:00:08 -0400 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2006-08-14 01:18:54 -0400 |
commit | b5ecf60fe6b18de0bc59d336d444835d4ef835ed (patch) | |
tree | fa8ccb8598d475a149ac6fb1ada068717bfa179b /drivers/cpufreq/cpufreq_ondemand.c | |
parent | 6595413fc9453a211f4b5d5cc42f0bbf3daa615b (diff) |
[CPUFREQ] make drivers/cpufreq/cpufreq_ondemand.c:powersave_bias_target() static
This patch makes the needlessly global powersave_bias_target() static.
Signed-off-by: Adrian Bunk <bunk@stusta.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 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c index 34874c2f1885..5ca2fd5d1ed1 100644 --- a/drivers/cpufreq/cpufreq_ondemand.c +++ b/drivers/cpufreq/cpufreq_ondemand.c | |||
@@ -105,8 +105,9 @@ static inline cputime64_t get_cpu_idle_time(unsigned int cpu) | |||
105 | * Returns the freq_hi to be used right now and will set freq_hi_jiffies, | 105 | * Returns the freq_hi to be used right now and will set freq_hi_jiffies, |
106 | * freq_lo, and freq_lo_jiffies in percpu area for averaging freqs. | 106 | * freq_lo, and freq_lo_jiffies in percpu area for averaging freqs. |
107 | */ | 107 | */ |
108 | unsigned int powersave_bias_target(struct cpufreq_policy *policy, | 108 | static unsigned int powersave_bias_target(struct cpufreq_policy *policy, |
109 | unsigned int freq_next, unsigned int relation) | 109 | unsigned int freq_next, |
110 | unsigned int relation) | ||
110 | { | 111 | { |
111 | unsigned int freq_req, freq_reduc, freq_avg; | 112 | unsigned int freq_req, freq_reduc, freq_avg; |
112 | unsigned int freq_hi, freq_lo; | 113 | unsigned int freq_hi, freq_lo; |