powerpc: Use of for_each_node_by_name() instead of open-coding it
authorDmitry Torokhov <dmitry.torokhov@gmail.com>
Wed, 1 Feb 2017 01:54:37 +0000 (17:54 -0800)
committerMichael Ellerman <mpe@ellerman.id.au>
Mon, 4 Dec 2017 02:10:59 +0000 (13:10 +1100)
Instead of manually coding the loop with of_find_node_by_name(), let's
switch to the standard macro for iterating over nodes with given name.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
[mpe: Fix build failures due to typo in mpc832x_mds.c]
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/platforms/83xx/mpc832x_mds.c
arch/powerpc/platforms/83xx/mpc832x_rdb.c
arch/powerpc/platforms/83xx/mpc836x_mds.c
arch/powerpc/platforms/cell/interrupt.c
arch/powerpc/platforms/cell/setup.c
arch/powerpc/platforms/cell/spider-pic.c
arch/powerpc/platforms/powermac/feature.c

index bb7b25a..74c154e 100644 (file)
@@ -75,7 +75,7 @@ static void __init mpc832x_sys_setup_arch(void)
                par_io_init(np);
                of_node_put(np);
 
-               for (np = NULL; (np = of_find_node_by_name(np, "ucc")) != NULL;)
+               for_each_node_by_name(np, "ucc")
                        par_io_of_config(np);
        }
 
index a4539c5..4389865 100644 (file)
@@ -204,7 +204,7 @@ static void __init mpc832x_rdb_setup_arch(void)
                par_io_init(np);
                of_node_put(np);
 
-               for (np = NULL; (np = of_find_node_by_name(np, "ucc")) != NULL;)
+               for_each_node_by_name(np, "ucc")
                        par_io_of_config(np);
        }
 #endif                         /* CONFIG_QUICC_ENGINE */
index 4fc3051..fd44dd0 100644 (file)
@@ -83,7 +83,7 @@ static void __init mpc836x_mds_setup_arch(void)
                par_io_init(np);
                of_node_put(np);
 
-               for (np = NULL; (np = of_find_node_by_name(np, "ucc")) != NULL;)
+               for_each_node_by_name(np, "ucc")
                        par_io_of_config(np);
 #ifdef CONFIG_QE_USB
                /* Must fixup Par IO before QE GPIO chips are registered. */
index 6fc85e2..5d4bf9a 100644 (file)
@@ -315,8 +315,7 @@ static int __init setup_iic(void)
        struct cbe_iic_regs __iomem *node_iic;
        const u32 *np;
 
-       for (dn = NULL;
-            (dn = of_find_node_by_name(dn,"interrupt-controller")) != NULL;) {
+       for_each_node_by_name(dn, "interrupt-controller") {
                if (!of_device_is_compatible(dn,
                                     "IBM,CBEA-Internal-Interrupt-Controller"))
                        continue;
index d3543e6..7d31b8d 100644 (file)
@@ -192,8 +192,7 @@ static void __init mpic_init_IRQ(void)
        struct device_node *dn;
        struct mpic *mpic;
 
-       for (dn = NULL;
-            (dn = of_find_node_by_name(dn, "interrupt-controller"));) {
+       for_each_node_by_name(dn, "interrupt-controller") {
                if (!of_device_is_compatible(dn, "CBEA,platform-open-pic"))
                        continue;
 
index aa44bfc..c137f0c 100644 (file)
@@ -343,8 +343,7 @@ void __init spider_init_IRQ(void)
         * device-tree is bogus anyway) so all we can do is pray or maybe test
         * the address and deduce the node-id
         */
-       for (dn = NULL;
-            (dn = of_find_node_by_name(dn, "interrupt-controller"));) {
+       for_each_node_by_name(dn, "interrupt-controller") {
                if (of_device_is_compatible(dn, "CBEA,platform-spider-pic")) {
                        if (of_address_to_resource(dn, 0, &r)) {
                                printk(KERN_WARNING "spider-pic: Failed\n");
index 80a31f5..466b842 100644 (file)
@@ -2641,7 +2641,7 @@ static void __init probe_one_macio(const char *name, const char *compat, int typ
        phys_addr_t             addr;
        u64                     size;
 
-       for (node = NULL; (node = of_find_node_by_name(node, name)) != NULL;) {
+       for_each_node_by_name(node, name) {
                if (!compat)
                        break;
                if (of_device_is_compatible(node, compat))