|
@@ -79,15 +79,6 @@ static int davinci_target(struct cpufreq_policy *policy,
|
|
|
struct davinci_cpufreq_config *pdata = cpufreq.dev->platform_data;
|
|
|
struct clk *armclk = cpufreq.armclk;
|
|
|
|
|
|
- /*
|
|
|
- * Ensure desired rate is within allowed range. Some govenors
|
|
|
- * (ondemand) will just pass target_freq=0 to get the minimum.
|
|
|
- */
|
|
|
- if (target_freq < policy->cpuinfo.min_freq)
|
|
|
- target_freq = policy->cpuinfo.min_freq;
|
|
|
- if (target_freq > policy->cpuinfo.max_freq)
|
|
|
- target_freq = policy->cpuinfo.max_freq;
|
|
|
-
|
|
|
freqs.old = davinci_getspeed(0);
|
|
|
freqs.new = clk_round_rate(armclk, target_freq * 1000) / 1000;
|
|
|
|