Round clock frequencies to the nearest possible frequency. As opposed to
the nearest that does not exceed the requested one.

Signed-off-by: Soren Brinkmann <[email protected]>
---

 drivers/cpufreq/cpufreq-cpu0.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/cpufreq/cpufreq-cpu0.c b/drivers/cpufreq/cpufreq-cpu0.c
index 1bf6bbac3e03..e1de9dc46542 100644
--- a/drivers/cpufreq/cpufreq-cpu0.c
+++ b/drivers/cpufreq/cpufreq-cpu0.c
@@ -42,7 +42,8 @@ static int cpu0_set_target(struct cpufreq_policy *policy, 
unsigned int index)
        long freq_Hz, freq_exact;
        int ret;
 
-       freq_Hz = clk_round_rate(cpu_clk, freq_table[index].frequency * 1000);
+       freq_Hz = clk_round_rate_nearest(cpu_clk,
+                       freq_table[index].frequency * 1000);
        if (freq_Hz <= 0)
                freq_Hz = freq_table[index].frequency * 1000;
 
-- 
1.9.3.1.ga73a6ad

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to