diff options
author | Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com> | 2013-06-17 10:09:51 -0400 |
---|---|---|
committer | Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com> | 2013-08-21 05:29:55 -0400 |
commit | e768f350c8c3d4253011282db771f35af37ee59a (patch) | |
tree | ef821a0ecd0b2bb00fe9aa3bf761062e1be839ce | |
parent | c0e469487d2327e644e8d86e091c0d4e4351a1a1 (diff) |
cpufreq: kirkwood-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: Jason Cooper <jason@lakedaemon.net>
Acked-by: Andrew Lunn <andrew@lunn.ch>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
-rw-r--r-- | drivers/cpufreq/kirkwood-cpufreq.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/cpufreq/kirkwood-cpufreq.c b/drivers/cpufreq/kirkwood-cpufreq.c index c233ea617366..25ac2cb15a43 100644 --- a/drivers/cpufreq/kirkwood-cpufreq.c +++ b/drivers/cpufreq/kirkwood-cpufreq.c | |||
@@ -14,7 +14,7 @@ | |||
14 | #include <linux/clk.h> | 14 | #include <linux/clk.h> |
15 | #include <linux/clk-provider.h> | 15 | #include <linux/clk-provider.h> |
16 | #include <linux/cpufreq.h> | 16 | #include <linux/cpufreq.h> |
17 | #include <linux/of.h> | 17 | #include <linux/of_device.h> |
18 | #include <linux/platform_device.h> | 18 | #include <linux/platform_device.h> |
19 | #include <linux/io.h> | 19 | #include <linux/io.h> |
20 | #include <asm/proc-fns.h> | 20 | #include <asm/proc-fns.h> |
@@ -175,9 +175,11 @@ static int kirkwood_cpufreq_probe(struct platform_device *pdev) | |||
175 | if (IS_ERR(priv.base)) | 175 | if (IS_ERR(priv.base)) |
176 | return PTR_ERR(priv.base); | 176 | return PTR_ERR(priv.base); |
177 | 177 | ||
178 | np = of_find_node_by_path("/cpus/cpu@0"); | 178 | np = of_cpu_device_node_get(0); |
179 | if (!np) | 179 | if (!np) { |
180 | dev_err(&pdev->dev, "failed to get cpu device node\n"); | ||
180 | return -ENODEV; | 181 | return -ENODEV; |
182 | } | ||
181 | 183 | ||
182 | priv.cpu_clk = of_clk_get_by_name(np, "cpu_clk"); | 184 | priv.cpu_clk = of_clk_get_by_name(np, "cpu_clk"); |
183 | if (IS_ERR(priv.cpu_clk)) { | 185 | if (IS_ERR(priv.cpu_clk)) { |