[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>
This commit is contained in:
parent
6595413fc9
commit
b5ecf60fe6
1 changed files with 3 additions and 2 deletions
|
@ -105,8 +105,9 @@ static inline cputime64_t get_cpu_idle_time(unsigned int cpu)
|
||||||
* Returns the freq_hi to be used right now and will set freq_hi_jiffies,
|
* Returns the freq_hi to be used right now and will set freq_hi_jiffies,
|
||||||
* freq_lo, and freq_lo_jiffies in percpu area for averaging freqs.
|
* freq_lo, and freq_lo_jiffies in percpu area for averaging freqs.
|
||||||
*/
|
*/
|
||||||
unsigned int powersave_bias_target(struct cpufreq_policy *policy,
|
static unsigned int powersave_bias_target(struct cpufreq_policy *policy,
|
||||||
unsigned int freq_next, unsigned int relation)
|
unsigned int freq_next,
|
||||||
|
unsigned int relation)
|
||||||
{
|
{
|
||||||
unsigned int freq_req, freq_reduc, freq_avg;
|
unsigned int freq_req, freq_reduc, freq_avg;
|
||||||
unsigned int freq_hi, freq_lo;
|
unsigned int freq_hi, freq_lo;
|
||||||
|
|
Loading…
Reference in a new issue