tty: 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. Signed-off-by: Rob Herring <robh@kernel.org> Acked-by: David S. Miller <davem@davemloft.net> Cc: Jiri Slaby <jslaby@suse.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: "David S. Miller" <davem@davemloft.net> Cc: linuxppc-dev@lists.ozlabs.org Cc: linux-serial@vger.kernel.org Cc: sparclinux@vger.kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
46d01710f6
commit
a73ee8438c
@@ -1671,8 +1671,8 @@ static int __init pmz_probe(void)
|
||||
if (!node_a && !node_b) {
|
||||
of_node_put(node_a);
|
||||
of_node_put(node_b);
|
||||
printk(KERN_ERR "pmac_zilog: missing node %c for escc %s\n",
|
||||
(!node_a) ? 'a' : 'b', node_p->full_name);
|
||||
printk(KERN_ERR "pmac_zilog: missing node %c for escc %pOF\n",
|
||||
(!node_a) ? 'a' : 'b', node_p);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user