[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1362029882-28993-3-git-send-email-namhyung@kernel.org>
Date: Thu, 28 Feb 2013 14:38:02 +0900
From: Namhyung Kim <namhyung@...nel.org>
To: "Rafael J. Wysocki" <rjw@...k.pl>
Cc: LKML <linux-kernel@...r.kernel.org>, cpufreq@...r.kernel.org,
linux-pm@...r.kernel.org, Namhyung Kim <namhyung.kim@....com>,
Viresh Kumar <viresh.kumar@...aro.org>
Subject: [PATCH -next 3/3] cpufreq: conservative: Fix relation when decreasing frequency
From: Namhyung Kim <namhyung.kim@....com>
The relation should be CPUFREQ_RELATION_L to find optimal frequency
when decreasing.
Cc: Viresh Kumar <viresh.kumar@...aro.org>
Signed-off-by: Namhyung Kim <namhyung@...nel.org>
---
drivers/cpufreq/cpufreq_conservative.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/cpufreq/cpufreq_conservative.c b/drivers/cpufreq/cpufreq_conservative.c
index dd2fd9094819..0d582811d66c 100644
--- a/drivers/cpufreq/cpufreq_conservative.c
+++ b/drivers/cpufreq/cpufreq_conservative.c
@@ -106,7 +106,7 @@ static void cs_check_cpu(int cpu, unsigned int load)
dbs_info->requested_freq = policy->min;
__cpufreq_driver_target(policy, dbs_info->requested_freq,
- CPUFREQ_RELATION_H);
+ CPUFREQ_RELATION_L);
return;
}
}
--
1.7.11.7
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists