mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 15:58:47 +00:00
cpufreq: ARM big LITTLE DT: Return correct transition latency
By mistake we are returning zero for successful call to dt_get_transition_latency(), whereas we should return transition_latency. Fix that. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
bb08be7872
commit
996905f333
@ -78,7 +78,7 @@ static int dt_get_transition_latency(struct device *cpu_dev)
|
|||||||
of_node_put(np);
|
of_node_put(np);
|
||||||
of_node_put(parent);
|
of_node_put(parent);
|
||||||
|
|
||||||
return 0;
|
return transition_latency;
|
||||||
}
|
}
|
||||||
|
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user