diff options
author | Rob Herring <robh@kernel.org> | 2018-11-17 00:06:54 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-11-19 00:35:19 +0300 |
commit | a412c85aa82a5c8d585b08808aeefcd186712bb5 (patch) | |
tree | bf7216c8fe39c0beb00ffb18511b01bc93b696d3 /arch/sparc/kernel/sun4d_irq.c | |
parent | f3180e1828e63eae22269ec81ab627f647d43f39 (diff) | |
download | linux-a412c85aa82a5c8d585b08808aeefcd186712bb5.tar.xz |
sparc: Convert to using %pOF instead of full_name
Now that we have a custom printf format specifier, convert users of
full_name to use %pOF instead. This is preparation to remove storing
of the full path string for each node.
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>
Diffstat (limited to 'arch/sparc/kernel/sun4d_irq.c')
-rw-r--r-- | arch/sparc/kernel/sun4d_irq.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/sparc/kernel/sun4d_irq.c b/arch/sparc/kernel/sun4d_irq.c index d869d409fce6..6d266d7dd2b6 100644 --- a/arch/sparc/kernel/sun4d_irq.c +++ b/arch/sparc/kernel/sun4d_irq.c @@ -361,15 +361,15 @@ static unsigned int sun4d_build_device_irq(struct platform_device *op, * lacks a "board#" property, something is very wrong. */ if (!bus->parent || strcmp(bus->parent->name, bus_connection)) { - printk(KERN_ERR "%s: Error, parent is not %s.\n", - bus->full_name, bus_connection); + printk(KERN_ERR "%pOF: Error, parent is not %s.\n", + bus, bus_connection); goto err_out; } board_parent = bus->parent; board = of_getintprop_default(board_parent, "board#", -1); if (board == -1) { - printk(KERN_ERR "%s: Error, lacks board# property.\n", - board_parent->full_name); + printk(KERN_ERR "%pOF: Error, lacks board# property.\n", + board_parent); goto err_out; } |