diff options
author | Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com> | 2013-06-17 10:07:28 -0400 |
---|---|---|
committer | Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com> | 2013-08-21 05:29:54 -0400 |
commit | 5de6e94a298576c2774ba43c0c3b0a0410cd100e (patch) | |
tree | b0d4faa3a5b7a6abf8720b2a11d8c927dd46afff /drivers/cpufreq | |
parent | f837a9b5ab05c52a07108c6f09ca66f2e0aee757 (diff) |
cpufreq: highbank-cpufreq: remove device tree parsing for cpu nodes
Now that the cpu device registration initialises the of_node(if available)
appropriately for all the cpus, parsing here is redundant.
This patch removes all DT parsing and uses cpu->of_node instead.
Cc: Mark Langsdorf <mark.langsdorf@calxeda.com>
Acked-by: Rob Herring <rob.herring@calxeda.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/highbank-cpufreq.c | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/drivers/cpufreq/highbank-cpufreq.c b/drivers/cpufreq/highbank-cpufreq.c index b61b5a3fad64..794123fcf3e3 100644 --- a/drivers/cpufreq/highbank-cpufreq.c +++ b/drivers/cpufreq/highbank-cpufreq.c | |||
@@ -69,23 +69,17 @@ static int hb_cpufreq_driver_init(void) | |||
69 | if (!of_machine_is_compatible("calxeda,highbank")) | 69 | if (!of_machine_is_compatible("calxeda,highbank")) |
70 | return -ENODEV; | 70 | return -ENODEV; |
71 | 71 | ||
72 | for_each_child_of_node(of_find_node_by_path("/cpus"), np) | ||
73 | if (of_get_property(np, "operating-points", NULL)) | ||
74 | break; | ||
75 | |||
76 | if (!np) { | ||
77 | pr_err("failed to find highbank cpufreq node\n"); | ||
78 | return -ENOENT; | ||
79 | } | ||
80 | |||
81 | cpu_dev = get_cpu_device(0); | 72 | cpu_dev = get_cpu_device(0); |
82 | if (!cpu_dev) { | 73 | if (!cpu_dev) { |
83 | pr_err("failed to get highbank cpufreq device\n"); | 74 | pr_err("failed to get highbank cpufreq device\n"); |
84 | ret = -ENODEV; | 75 | return -ENODEV; |
85 | goto out_put_node; | ||
86 | } | 76 | } |
87 | 77 | ||
88 | cpu_dev->of_node = np; | 78 | np = of_node_get(cpu_dev->of_node); |
79 | if (!np) { | ||
80 | pr_err("failed to find highbank cpufreq node\n"); | ||
81 | return -ENOENT; | ||
82 | } | ||
89 | 83 | ||
90 | cpu_clk = clk_get(cpu_dev, NULL); | 84 | cpu_clk = clk_get(cpu_dev, NULL); |
91 | if (IS_ERR(cpu_clk)) { | 85 | if (IS_ERR(cpu_clk)) { |