In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier.
Cc: Andrew Lunn <[email protected]> Cc: "David S. Miller" <[email protected]> Cc: [email protected] Reviewed-by: Florian Fainelli <[email protected]> Signed-off-by: Rob Herring <[email protected]> --- David, Resending because you superseded this one for some reason. It shouldn't be. Perhaps because the subject was similar to others? Rob drivers/net/phy/mdio-thunder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/phy/mdio-thunder.c b/drivers/net/phy/mdio-thunder.c index 564616968cad..1546f6398831 100644 --- a/drivers/net/phy/mdio-thunder.c +++ b/drivers/net/phy/mdio-thunder.c @@ -73,8 +73,8 @@ static int thunder_mdiobus_pci_probe(struct pci_dev *pdev, err = of_address_to_resource(node, 0, &r); if (err) { dev_err(&pdev->dev, - "Couldn't translate address for \"%s\"\n", - node->name); + "Couldn't translate address for \"%pOFn\"\n", + node); break; } -- 2.17.1

