diff options
author | Stratos Karafotis <stratosk@semaphore.gr> | 2013-06-05 12:01:50 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-07-25 19:06:44 -0400 |
commit | cffe4e0e7413eb29fb8bd035c8b12b33a4b8522a (patch) | |
tree | 71b3518f4bb7770845cce1488c0e7861e0321014 /drivers | |
parent | 61c63e5ed3b9c472899d7152e961f2ffaafcf5a0 (diff) |
cpufreq: Remove unused function __cpufreq_driver_getavg()
The target frequency calculation method in the ondemand governor has
changed and it is now independent of the measured average frequency.
Consequently, the __cpufreq_driver_getavg() function and getavg
member of struct cpufreq_driver are not used any more, so drop them.
[rjw: Changelog]
Signed-off-by: Stratos Karafotis <stratosk@semaphore.gr>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/cpufreq/cpufreq.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index a4ad7339588d..9a9d8ee9faec 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
@@ -1593,18 +1593,6 @@ fail: | |||
1593 | } | 1593 | } |
1594 | EXPORT_SYMBOL_GPL(cpufreq_driver_target); | 1594 | EXPORT_SYMBOL_GPL(cpufreq_driver_target); |
1595 | 1595 | ||
1596 | int __cpufreq_driver_getavg(struct cpufreq_policy *policy, unsigned int cpu) | ||
1597 | { | ||
1598 | if (cpufreq_disabled()) | ||
1599 | return 0; | ||
1600 | |||
1601 | if (!cpufreq_driver->getavg) | ||
1602 | return 0; | ||
1603 | |||
1604 | return cpufreq_driver->getavg(policy, cpu); | ||
1605 | } | ||
1606 | EXPORT_SYMBOL_GPL(__cpufreq_driver_getavg); | ||
1607 | |||
1608 | /* | 1596 | /* |
1609 | * when "event" is CPUFREQ_GOV_LIMITS | 1597 | * when "event" is CPUFREQ_GOV_LIMITS |
1610 | */ | 1598 | */ |