diff options
author | Rob Herring <robh@kernel.org> | 2018-08-28 03:52:40 +0200 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2018-09-25 12:40:07 +0200 |
commit | ac9ba7dc8613773b037a96af24f381ef230ef1ae (patch) | |
tree | 52f20c37784ba1c99c5c5f57ce94eb9d2266eb37 /drivers/phy/broadcom/phy-brcm-sata.c | |
parent | dt-bindings: rcar-gen3-phy-usb3: Add r8a774a1 support (diff) | |
download | linux-ac9ba7dc8613773b037a96af24f381ef230ef1ae.tar.xz linux-ac9ba7dc8613773b037a96af24f381ef230ef1ae.zip |
phy: Convert to using %pOFn instead of device_node.name
In preparation to remove the node name pointer from struct device_node,
convert printf users to use the %pOFn format specifier.
Cc: Kishon Vijay Abraham I <kishon@ti.com>
Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'drivers/phy/broadcom/phy-brcm-sata.c')
-rw-r--r-- | drivers/phy/broadcom/phy-brcm-sata.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/phy/broadcom/phy-brcm-sata.c b/drivers/phy/broadcom/phy-brcm-sata.c index 8708ea3b4d6d..ac57f5a41708 100644 --- a/drivers/phy/broadcom/phy-brcm-sata.c +++ b/drivers/phy/broadcom/phy-brcm-sata.c @@ -600,8 +600,8 @@ static int brcm_sata_phy_probe(struct platform_device *pdev) struct brcm_sata_port *port; if (of_property_read_u32(child, "reg", &id)) { - dev_err(dev, "missing reg property in node %s\n", - child->name); + dev_err(dev, "missing reg property in node %pOFn\n", + child); ret = -EINVAL; goto put_child; } |