Replace open coded parsing of CPU nodes 'reg' property with
of_get_cpu_hwid().

Cc: Guo Ren <guo...@kernel.org>
Cc: linux-c...@vger.kernel.org
Signed-off-by: Rob Herring <r...@kernel.org>
---
 arch/csky/kernel/smp.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/arch/csky/kernel/smp.c b/arch/csky/kernel/smp.c
index e2993539af8e..6bb38bc2f39b 100644
--- a/arch/csky/kernel/smp.c
+++ b/arch/csky/kernel/smp.c
@@ -180,15 +180,13 @@ void __init setup_smp_ipi(void)
 void __init setup_smp(void)
 {
        struct device_node *node = NULL;
-       int cpu;
+       unsigned int cpu;
 
        for_each_of_cpu_node(node) {
                if (!of_device_is_available(node))
                        continue;
 
-               if (of_property_read_u32(node, "reg", &cpu))
-                       continue;
-
+               cpu = of_get_cpu_hwid(node, 0);
                if (cpu >= NR_CPUS)
                        continue;
 
-- 
2.30.2

Reply via email to