Skip to content

Commit

Permalink
cpufreq: Clean up cpufreq_parse_governor()
Browse files Browse the repository at this point in the history
Drop an unnecessary local variable from cpufreq_parse_governor()
and rearrange the code in there to make it easier to follow.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  • Loading branch information
Rafael J. Wysocki committed Dec 4, 2017
1 parent ae64f9b commit 045149e
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions drivers/cpufreq/cpufreq.c
Original file line number Diff line number Diff line change
Expand Up @@ -604,43 +604,45 @@ static struct cpufreq_governor *find_governor(const char *str_governor)
static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
struct cpufreq_governor **governor)
{
int err = -EINVAL;

if (cpufreq_driver->setpolicy) {
if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
*policy = CPUFREQ_POLICY_PERFORMANCE;
err = 0;
} else if (!strncasecmp(str_governor, "powersave",
CPUFREQ_NAME_LEN)) {
return 0;
}

if (!strncasecmp(str_governor, "powersave", CPUFREQ_NAME_LEN)) {
*policy = CPUFREQ_POLICY_POWERSAVE;
err = 0;
return 0;
}
} else {
struct cpufreq_governor *t;

mutex_lock(&cpufreq_governor_mutex);

t = find_governor(str_governor);

if (t == NULL) {
if (!t) {
int ret;

mutex_unlock(&cpufreq_governor_mutex);

ret = request_module("cpufreq_%s", str_governor);
if (ret)
return -EINVAL;

mutex_lock(&cpufreq_governor_mutex);

if (ret == 0)
t = find_governor(str_governor);
t = find_governor(str_governor);
}

if (t != NULL) {
mutex_unlock(&cpufreq_governor_mutex);

if (t) {
*governor = t;
err = 0;
return 0;
}

mutex_unlock(&cpufreq_governor_mutex);
}
return err;

return -EINVAL;
}

/**
Expand Down

0 comments on commit 045149e

Please sign in to comment.