Commit ac9ba7dc authored by Rob Herring's avatar Rob Herring Committed by Kishon Vijay Abraham I

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: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
parent fcd0eec4
...@@ -153,8 +153,8 @@ static int cygnus_pcie_phy_probe(struct platform_device *pdev) ...@@ -153,8 +153,8 @@ static int cygnus_pcie_phy_probe(struct platform_device *pdev)
struct cygnus_pcie_phy *p; struct cygnus_pcie_phy *p;
if (of_property_read_u32(child, "reg", &id)) { if (of_property_read_u32(child, "reg", &id)) {
dev_err(dev, "missing reg property for %s\n", dev_err(dev, "missing reg property for %pOFn\n",
child->name); child);
ret = -EINVAL; ret = -EINVAL;
goto put_child; goto put_child;
} }
......
...@@ -600,8 +600,8 @@ static int brcm_sata_phy_probe(struct platform_device *pdev) ...@@ -600,8 +600,8 @@ static int brcm_sata_phy_probe(struct platform_device *pdev)
struct brcm_sata_port *port; struct brcm_sata_port *port;
if (of_property_read_u32(child, "reg", &id)) { if (of_property_read_u32(child, "reg", &id)) {
dev_err(dev, "missing reg property in node %s\n", dev_err(dev, "missing reg property in node %pOFn\n",
child->name); child);
ret = -EINVAL; ret = -EINVAL;
goto put_child; goto put_child;
} }
......
...@@ -231,14 +231,14 @@ static int phy_berlin_sata_probe(struct platform_device *pdev) ...@@ -231,14 +231,14 @@ static int phy_berlin_sata_probe(struct platform_device *pdev)
struct phy_berlin_desc *phy_desc; struct phy_berlin_desc *phy_desc;
if (of_property_read_u32(child, "reg", &phy_id)) { if (of_property_read_u32(child, "reg", &phy_id)) {
dev_err(dev, "missing reg property in node %s\n", dev_err(dev, "missing reg property in node %pOFn\n",
child->name); child);
ret = -EINVAL; ret = -EINVAL;
goto put_child; goto put_child;
} }
if (phy_id >= ARRAY_SIZE(phy_berlin_power_down_bits)) { if (phy_id >= ARRAY_SIZE(phy_berlin_power_down_bits)) {
dev_err(dev, "invalid reg in node %s\n", child->name); dev_err(dev, "invalid reg in node %pOFn\n", child);
ret = -EINVAL; ret = -EINVAL;
goto put_child; goto put_child;
} }
......
...@@ -1400,7 +1400,7 @@ static int phy_pipe_clk_register(struct qcom_qmp *qmp, struct device_node *np) ...@@ -1400,7 +1400,7 @@ static int phy_pipe_clk_register(struct qcom_qmp *qmp, struct device_node *np)
ret = of_property_read_string(np, "clock-output-names", &init.name); ret = of_property_read_string(np, "clock-output-names", &init.name);
if (ret) { if (ret) {
dev_err(qmp->dev, "%s: No clock-output-names\n", np->name); dev_err(qmp->dev, "%pOFn: No clock-output-names\n", np);
return ret; return ret;
} }
......
...@@ -337,8 +337,8 @@ static int rockchip_emmc_phy_probe(struct platform_device *pdev) ...@@ -337,8 +337,8 @@ static int rockchip_emmc_phy_probe(struct platform_device *pdev)
return -ENOMEM; return -ENOMEM;
if (of_property_read_u32(dev->of_node, "reg", &reg_offset)) { if (of_property_read_u32(dev->of_node, "reg", &reg_offset)) {
dev_err(dev, "missing reg property in node %s\n", dev_err(dev, "missing reg property in node %pOFn\n",
dev->of_node->name); dev->of_node);
return -EINVAL; return -EINVAL;
} }
......
...@@ -1116,8 +1116,8 @@ static int rockchip_usb2phy_probe(struct platform_device *pdev) ...@@ -1116,8 +1116,8 @@ static int rockchip_usb2phy_probe(struct platform_device *pdev)
} }
if (of_property_read_u32(np, "reg", &reg)) { if (of_property_read_u32(np, "reg", &reg)) {
dev_err(dev, "the reg property is not assigned in %s node\n", dev_err(dev, "the reg property is not assigned in %pOFn node\n",
np->name); np);
return -EINVAL; return -EINVAL;
} }
...@@ -1143,8 +1143,8 @@ static int rockchip_usb2phy_probe(struct platform_device *pdev) ...@@ -1143,8 +1143,8 @@ static int rockchip_usb2phy_probe(struct platform_device *pdev)
} }
if (!rphy->phy_cfg) { if (!rphy->phy_cfg) {
dev_err(dev, "no phy-config can be matched with %s node\n", dev_err(dev, "no phy-config can be matched with %pOFn node\n",
np->name); np);
return -EINVAL; return -EINVAL;
} }
......
...@@ -1145,8 +1145,8 @@ static int rockchip_typec_phy_probe(struct platform_device *pdev) ...@@ -1145,8 +1145,8 @@ static int rockchip_typec_phy_probe(struct platform_device *pdev)
} }
if (!tcphy->port_cfgs) { if (!tcphy->port_cfgs) {
dev_err(dev, "no phy-config can be matched with %s node\n", dev_err(dev, "no phy-config can be matched with %pOFn node\n",
np->name); np);
return -EINVAL; return -EINVAL;
} }
...@@ -1186,8 +1186,8 @@ static int rockchip_typec_phy_probe(struct platform_device *pdev) ...@@ -1186,8 +1186,8 @@ static int rockchip_typec_phy_probe(struct platform_device *pdev)
continue; continue;
if (IS_ERR(phy)) { if (IS_ERR(phy)) {
dev_err(dev, "failed to create phy: %s\n", dev_err(dev, "failed to create phy: %pOFn\n",
child_np->name); child_np);
pm_runtime_disable(dev); pm_runtime_disable(dev);
return PTR_ERR(phy); return PTR_ERR(phy);
} }
......
...@@ -208,8 +208,8 @@ static int rockchip_usb_phy_init(struct rockchip_usb_phy_base *base, ...@@ -208,8 +208,8 @@ static int rockchip_usb_phy_init(struct rockchip_usb_phy_base *base,
rk_phy->np = child; rk_phy->np = child;
if (of_property_read_u32(child, "reg", &reg_offset)) { if (of_property_read_u32(child, "reg", &reg_offset)) {
dev_err(base->dev, "missing reg property in node %s\n", dev_err(base->dev, "missing reg property in node %pOFn\n",
child->name); child);
return -EINVAL; return -EINVAL;
} }
......
...@@ -115,8 +115,8 @@ int tegra_xusb_lane_parse_dt(struct tegra_xusb_lane *lane, ...@@ -115,8 +115,8 @@ int tegra_xusb_lane_parse_dt(struct tegra_xusb_lane *lane,
err = match_string(lane->soc->funcs, lane->soc->num_funcs, function); err = match_string(lane->soc->funcs, lane->soc->num_funcs, function);
if (err < 0) { if (err < 0) {
dev_err(dev, "invalid function \"%s\" for lane \"%s\"\n", dev_err(dev, "invalid function \"%s\" for lane \"%pOFn\"\n",
function, np->name); function, np);
return err; return err;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment