aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/max8997-regulator.c
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2018-08-27 20:52:42 -0500
committerMark Brown <broonie@kernel.org>2018-08-28 19:41:35 +0100
commit0c9721a5d1dea7122601dc8694e7d4a208874b84 (patch)
tree2594d8230de9bbd0a83f7636dcd6cc605f856665 /drivers/regulator/max8997-regulator.c
parentLinux 4.19-rc1 (diff)
downloadlinux-dev-0c9721a5d1dea7122601dc8694e7d4a208874b84.tar.xz
linux-dev-0c9721a5d1dea7122601dc8694e7d4a208874b84.zip
regulator: 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. Signed-off-by: Rob Herring <robh@kernel.org> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/max8997-regulator.c')
-rw-r--r--drivers/regulator/max8997-regulator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/max8997-regulator.c b/drivers/regulator/max8997-regulator.c
index ad0c806b0737..3bf5ddfaaea8 100644
--- a/drivers/regulator/max8997-regulator.c
+++ b/drivers/regulator/max8997-regulator.c
@@ -929,8 +929,8 @@ static int max8997_pmic_dt_parse_pdata(struct platform_device *pdev,
break;
if (i == ARRAY_SIZE(regulators)) {
- dev_warn(&pdev->dev, "don't know how to configure regulator %s\n",
- reg_np->name);
+ dev_warn(&pdev->dev, "don't know how to configure regulator %pOFn\n",
+ reg_np);
continue;
}