sparc: Convert to using %pOFn instead of device_node.name
authorRob Herring <robh@kernel.org>
Tue, 28 Aug 2018 15:44:32 +0000 (10:44 -0500)
committerDavid S. Miller <davem@davemloft.net>
Mon, 8 Oct 2018 05:41:07 +0000 (22:41 -0700)
In preparation to remove the node name pointer from struct device_node,
convert printf users to use the %pOFn format specifier.

Cc: "David S. Miller" <davem@davemloft.net>
Cc: sparclinux@vger.kernel.org
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc/kernel/auxio_64.c
arch/sparc/kernel/power.c
arch/sparc/kernel/prom_32.c
arch/sparc/kernel/prom_64.c

index 4e8f56c3793c42c3dbace3dd187258fed10dd760..cc42225c20f3c523d100cb5798020a05daf31853 100644 (file)
@@ -115,8 +115,8 @@ static int auxio_probe(struct platform_device *dev)
                auxio_devtype = AUXIO_TYPE_SBUS;
                size = 1;
        } else {
-               printk("auxio: Unknown parent bus type [%s]\n",
-                      dp->parent->name);
+               printk("auxio: Unknown parent bus type [%pOFn]\n",
+                      dp->parent);
                return -ENODEV;
        }
        auxio_register = of_ioremap(&dev->resource[0], 0, size, "auxio");
index 92627abce311285a4784620a6745e933a07f1d4c..d941875dd718653aa4cdbd5f8e705b38f48c3a04 100644 (file)
@@ -41,8 +41,8 @@ static int power_probe(struct platform_device *op)
 
        power_reg = of_ioremap(res, 0, 0x4, "power");
 
-       printk(KERN_INFO "%s: Control reg at %llx\n",
-              op->dev.of_node->name, res->start);
+       printk(KERN_INFO "%pOFn: Control reg at %llx\n",
+              op->dev.of_node, res->start);
 
        if (has_button_interrupt(irq, op->dev.of_node)) {
                if (request_irq(irq,
index b51cbb9e87dcbe8ae036d692d834ca5ebcaa9fee..17c87d29ff20d0716920a9f9a7f3236ab822a53b 100644 (file)
@@ -68,8 +68,8 @@ static void __init sparc32_path_component(struct device_node *dp, char *tmp_buf)
                return;
 
        regs = rprop->value;
-       sprintf(tmp_buf, "%s@%x,%x",
-               dp->name,
+       sprintf(tmp_buf, "%pOFn@%x,%x",
+               dp,
                regs->which_io, regs->phys_addr);
 }
 
@@ -84,8 +84,8 @@ static void __init sbus_path_component(struct device_node *dp, char *tmp_buf)
                return;
 
        regs = prop->value;
-       sprintf(tmp_buf, "%s@%x,%x",
-               dp->name,
+       sprintf(tmp_buf, "%pOFn@%x,%x",
+               dp,
                regs->which_io,
                regs->phys_addr);
 }
@@ -104,13 +104,13 @@ static void __init pci_path_component(struct device_node *dp, char *tmp_buf)
        regs = prop->value;
        devfn = (regs->phys_hi >> 8) & 0xff;
        if (devfn & 0x07) {
-               sprintf(tmp_buf, "%s@%x,%x",
-                       dp->name,
+               sprintf(tmp_buf, "%pOFn@%x,%x",
+                       dp,
                        devfn >> 3,
                        devfn & 0x07);
        } else {
-               sprintf(tmp_buf, "%s@%x",
-                       dp->name,
+               sprintf(tmp_buf, "%pOFn@%x",
+                       dp,
                        devfn >> 3);
        }
 }
@@ -127,8 +127,8 @@ static void __init ebus_path_component(struct device_node *dp, char *tmp_buf)
 
        regs = prop->value;
 
-       sprintf(tmp_buf, "%s@%x,%x",
-               dp->name,
+       sprintf(tmp_buf, "%pOFn@%x,%x",
+               dp,
                regs->which_io, regs->phys_addr);
 }
 
@@ -167,8 +167,8 @@ static void __init ambapp_path_component(struct device_node *dp, char *tmp_buf)
                return;
        device = prop->value;
 
-       sprintf(tmp_buf, "%s:%d:%d@%x,%x",
-               dp->name, *vendor, *device,
+       sprintf(tmp_buf, "%pOFn:%d:%d@%x,%x",
+               dp, *vendor, *device,
                *intr, reg0);
 }
 
@@ -201,7 +201,7 @@ char * __init build_path_component(struct device_node *dp)
        tmp_buf[0] = '\0';
        __build_path_component(dp, tmp_buf);
        if (tmp_buf[0] == '\0')
-               strcpy(tmp_buf, dp->name);
+               snprintf(tmp_buf, sizeof(tmp_buf), "%pOFn", dp);
 
        n = prom_early_alloc(strlen(tmp_buf) + 1);
        strcpy(n, tmp_buf);
index baeaeed6499391e368240be85baa2698e81a2600..6220411ce8fce390640e417694e9347585b62dcc 100644 (file)
@@ -82,8 +82,8 @@ static void __init sun4v_path_component(struct device_node *dp, char *tmp_buf)
 
        regs = rprop->value;
        if (!of_node_is_root(dp->parent)) {
-               sprintf(tmp_buf, "%s@%x,%x",
-                       dp->name,
+               sprintf(tmp_buf, "%pOFn@%x,%x",
+                       dp,
                        (unsigned int) (regs->phys_addr >> 32UL),
                        (unsigned int) (regs->phys_addr & 0xffffffffUL));
                return;
@@ -97,17 +97,17 @@ static void __init sun4v_path_component(struct device_node *dp, char *tmp_buf)
                const char *prefix = (type == 0) ? "m" : "i";
 
                if (low_bits)
-                       sprintf(tmp_buf, "%s@%s%x,%x",
-                               dp->name, prefix,
+                       sprintf(tmp_buf, "%pOFn@%s%x,%x",
+                               dp, prefix,
                                high_bits, low_bits);
                else
-                       sprintf(tmp_buf, "%s@%s%x",
-                               dp->name,
+                       sprintf(tmp_buf, "%pOFn@%s%x",
+                               dp,
                                prefix,
                                high_bits);
        } else if (type == 12) {
-               sprintf(tmp_buf, "%s@%x",
-                       dp->name, high_bits);
+               sprintf(tmp_buf, "%pOFn@%x",
+                       dp, high_bits);
        }
 }
 
@@ -122,8 +122,8 @@ static void __init sun4u_path_component(struct device_node *dp, char *tmp_buf)
 
        regs = prop->value;
        if (!of_node_is_root(dp->parent)) {
-               sprintf(tmp_buf, "%s@%x,%x",
-                       dp->name,
+               sprintf(tmp_buf, "%pOFn@%x,%x",
+                       dp,
                        (unsigned int) (regs->phys_addr >> 32UL),
                        (unsigned int) (regs->phys_addr & 0xffffffffUL));
                return;
@@ -138,8 +138,8 @@ static void __init sun4u_path_component(struct device_node *dp, char *tmp_buf)
                if (tlb_type >= cheetah)
                        mask = 0x7fffff;
 
-               sprintf(tmp_buf, "%s@%x,%x",
-                       dp->name,
+               sprintf(tmp_buf, "%pOFn@%x,%x",
+                       dp,
                        *(u32 *)prop->value,
                        (unsigned int) (regs->phys_addr & mask));
        }
@@ -156,8 +156,8 @@ static void __init sbus_path_component(struct device_node *dp, char *tmp_buf)
                return;
 
        regs = prop->value;
-       sprintf(tmp_buf, "%s@%x,%x",
-               dp->name,
+       sprintf(tmp_buf, "%pOFn@%x,%x",
+               dp,
                regs->which_io,
                regs->phys_addr);
 }
@@ -176,13 +176,13 @@ static void __init pci_path_component(struct device_node *dp, char *tmp_buf)
        regs = prop->value;
        devfn = (regs->phys_hi >> 8) & 0xff;
        if (devfn & 0x07) {
-               sprintf(tmp_buf, "%s@%x,%x",
-                       dp->name,
+               sprintf(tmp_buf, "%pOFn@%x,%x",
+                       dp,
                        devfn >> 3,
                        devfn & 0x07);
        } else {
-               sprintf(tmp_buf, "%s@%x",
-                       dp->name,
+               sprintf(tmp_buf, "%pOFn@%x",
+                       dp,
                        devfn >> 3);
        }
 }
@@ -203,8 +203,8 @@ static void __init upa_path_component(struct device_node *dp, char *tmp_buf)
        if (!prop)
                return;
 
-       sprintf(tmp_buf, "%s@%x,%x",
-               dp->name,
+       sprintf(tmp_buf, "%pOFn@%x,%x",
+               dp,
                *(u32 *) prop->value,
                (unsigned int) (regs->phys_addr & 0xffffffffUL));
 }
@@ -221,7 +221,7 @@ static void __init vdev_path_component(struct device_node *dp, char *tmp_buf)
 
        regs = prop->value;
 
-       sprintf(tmp_buf, "%s@%x", dp->name, *regs);
+       sprintf(tmp_buf, "%pOFn@%x", dp, *regs);
 }
 
 /* "name@addrhi,addrlo" */
@@ -236,8 +236,8 @@ static void __init ebus_path_component(struct device_node *dp, char *tmp_buf)
 
        regs = prop->value;
 
-       sprintf(tmp_buf, "%s@%x,%x",
-               dp->name,
+       sprintf(tmp_buf, "%pOFn@%x,%x",
+               dp,
                (unsigned int) (regs->phys_addr >> 32UL),
                (unsigned int) (regs->phys_addr & 0xffffffffUL));
 }
@@ -257,8 +257,8 @@ static void __init i2c_path_component(struct device_node *dp, char *tmp_buf)
        /* This actually isn't right... should look at the #address-cells
         * property of the i2c bus node etc. etc.
         */
-       sprintf(tmp_buf, "%s@%x,%x",
-               dp->name, regs[0], regs[1]);
+       sprintf(tmp_buf, "%pOFn@%x,%x",
+               dp, regs[0], regs[1]);
 }
 
 /* "name@reg0[,reg1]" */
@@ -274,11 +274,11 @@ static void __init usb_path_component(struct device_node *dp, char *tmp_buf)
        regs = prop->value;
 
        if (prop->length == sizeof(u32) || regs[1] == 1) {
-               sprintf(tmp_buf, "%s@%x",
-                       dp->name, regs[0]);
+               sprintf(tmp_buf, "%pOFn@%x",
+                       dp, regs[0]);
        } else {
-               sprintf(tmp_buf, "%s@%x,%x",
-                       dp->name, regs[0], regs[1]);
+               sprintf(tmp_buf, "%pOFn@%x,%x",
+                       dp, regs[0], regs[1]);
        }
 }
 
@@ -295,11 +295,11 @@ static void __init ieee1394_path_component(struct device_node *dp, char *tmp_buf
        regs = prop->value;
 
        if (regs[2] || regs[3]) {
-               sprintf(tmp_buf, "%s@%08x%08x,%04x%08x",
-                       dp->name, regs[0], regs[1], regs[2], regs[3]);
+               sprintf(tmp_buf, "%pOFn@%08x%08x,%04x%08x",
+                       dp, regs[0], regs[1], regs[2], regs[3]);
        } else {
-               sprintf(tmp_buf, "%s@%08x%08x",
-                       dp->name, regs[0], regs[1]);
+               sprintf(tmp_buf, "%pOFn@%08x%08x",
+                       dp, regs[0], regs[1]);
        }
 }
 
@@ -361,7 +361,7 @@ char * __init build_path_component(struct device_node *dp)
        tmp_buf[0] = '\0';
        __build_path_component(dp, tmp_buf);
        if (tmp_buf[0] == '\0')
-               strcpy(tmp_buf, dp->name);
+               snprintf(tmp_buf, sizeof(tmp_buf), "%pOFn", dp);
 
        n = prom_early_alloc(strlen(tmp_buf) + 1);
        strcpy(n, tmp_buf);