diff options
author | Rob Herring <robh@kernel.org> | 2018-08-27 20:52:42 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-08-28 19:41:35 +0100 |
commit | 0c9721a5d1dea7122601dc8694e7d4a208874b84 (patch) | |
tree | 2594d8230de9bbd0a83f7636dcd6cc605f856665 /drivers/regulator/mc13xxx-regulator-core.c | |
parent | 5b394b2ddf0347bef56e50c69a58773c94343ff3 (diff) | |
download | linux-0c9721a5d1dea7122601dc8694e7d4a208874b84.tar.bz2 |
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/mc13xxx-regulator-core.c')
-rw-r--r-- | drivers/regulator/mc13xxx-regulator-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/mc13xxx-regulator-core.c b/drivers/regulator/mc13xxx-regulator-core.c index da4fb9824757..65eb1e0350cf 100644 --- a/drivers/regulator/mc13xxx-regulator-core.c +++ b/drivers/regulator/mc13xxx-regulator-core.c @@ -203,7 +203,7 @@ struct mc13xxx_regulator_init_data *mc13xxx_parse_regulators_dt( if (!found) dev_warn(&pdev->dev, - "Unknown regulator: %s\n", child->name); + "Unknown regulator: %pOFn\n", child); } of_node_put(parent); |