|
@@ -433,7 +433,7 @@ static ssize_t store_boost(struct kobject *kobj, struct attribute *attr,
|
|
|
}
|
|
|
define_one_global_rw(boost);
|
|
|
|
|
|
-static struct cpufreq_governor *__find_governor(const char *str_governor)
|
|
|
+static struct cpufreq_governor *find_governor(const char *str_governor)
|
|
|
{
|
|
|
struct cpufreq_governor *t;
|
|
|
|
|
@@ -469,7 +469,7 @@ static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
|
|
|
|
|
|
mutex_lock(&cpufreq_governor_mutex);
|
|
|
|
|
|
- t = __find_governor(str_governor);
|
|
|
+ t = find_governor(str_governor);
|
|
|
|
|
|
if (t == NULL) {
|
|
|
int ret;
|
|
@@ -479,7 +479,7 @@ static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
|
|
|
mutex_lock(&cpufreq_governor_mutex);
|
|
|
|
|
|
if (ret == 0)
|
|
|
- t = __find_governor(str_governor);
|
|
|
+ t = find_governor(str_governor);
|
|
|
}
|
|
|
|
|
|
if (t != NULL) {
|
|
@@ -936,7 +936,7 @@ static void cpufreq_init_policy(struct cpufreq_policy *policy)
|
|
|
memcpy(&new_policy, policy, sizeof(*policy));
|
|
|
|
|
|
/* Update governor of new_policy to the governor used before hotplug */
|
|
|
- gov = __find_governor(per_cpu(cpufreq_cpu_governor, policy->cpu));
|
|
|
+ gov = find_governor(per_cpu(cpufreq_cpu_governor, policy->cpu));
|
|
|
if (gov)
|
|
|
pr_debug("Restoring governor %s for cpu %d\n",
|
|
|
policy->governor->name, policy->cpu);
|
|
@@ -2102,7 +2102,7 @@ int cpufreq_register_governor(struct cpufreq_governor *governor)
|
|
|
|
|
|
governor->initialized = 0;
|
|
|
err = -EBUSY;
|
|
|
- if (__find_governor(governor->name) == NULL) {
|
|
|
+ if (!find_governor(governor->name)) {
|
|
|
err = 0;
|
|
|
list_add(&governor->governor_list, &cpufreq_governor_list);
|
|
|
}
|