Commit 0fc83929 authored by Lukasz Majewski's avatar Lukasz Majewski

cpufreq: exynos: Use simple approach to asses if cpu cooling can be used

Commit: e725d26c provided possibility to
use device tree to asses if cpu can be used as cooling device. Since the
code was somewhat awkward, simpler approach has been proposed.

Test HW: Exynos 4412 - Odroid U3.
Suggested-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarLukasz Majewski <l.majewski@samsung.com>
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
parent 42b696e8
...@@ -159,7 +159,7 @@ static struct cpufreq_driver exynos_driver = { ...@@ -159,7 +159,7 @@ static struct cpufreq_driver exynos_driver = {
static int exynos_cpufreq_probe(struct platform_device *pdev) static int exynos_cpufreq_probe(struct platform_device *pdev)
{ {
struct device_node *cpus, *np; struct device_node *cpu0;
int ret = -EINVAL; int ret = -EINVAL;
exynos_info = kzalloc(sizeof(*exynos_info), GFP_KERNEL); exynos_info = kzalloc(sizeof(*exynos_info), GFP_KERNEL);
...@@ -206,28 +206,19 @@ static int exynos_cpufreq_probe(struct platform_device *pdev) ...@@ -206,28 +206,19 @@ static int exynos_cpufreq_probe(struct platform_device *pdev)
if (ret) if (ret)
goto err_cpufreq_reg; goto err_cpufreq_reg;
cpus = of_find_node_by_path("/cpus"); cpu0 = of_get_cpu_node(0, NULL);
if (!cpus) { if (!cpu0) {
pr_err("failed to find cpus node\n"); pr_err("failed to find cpu0 node\n");
return 0; return 0;
} }
np = of_get_next_child(cpus, NULL); if (of_find_property(cpu0, "#cooling-cells", NULL)) {
if (!np) { cdev = of_cpufreq_cooling_register(cpu0,
pr_err("failed to find cpus child node\n");
of_node_put(cpus);
return 0;
}
if (of_find_property(np, "#cooling-cells", NULL)) {
cdev = of_cpufreq_cooling_register(np,
cpu_present_mask); cpu_present_mask);
if (IS_ERR(cdev)) if (IS_ERR(cdev))
pr_err("running cpufreq without cooling device: %ld\n", pr_err("running cpufreq without cooling device: %ld\n",
PTR_ERR(cdev)); PTR_ERR(cdev));
} }
of_node_put(np);
of_node_put(cpus);
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment