summaryrefslogtreecommitdiffstats
path: root/drivers/regulator/anatop-regulator.c
diff options
context:
space:
mode:
authorDong Aisheng2017-04-12 03:58:44 +0200
committerMark Brown2017-04-11 22:35:58 +0200
commit5062e04711dbc4f67b24ffd926cc67060267792d (patch)
tree1c1acf762f841a82150ea21c9cd473aab3e5b36e /drivers/regulator/anatop-regulator.c
parentregulator: anatop: check return value of of_get_regulator_init_data (diff)
downloadkernel-qcow2-linux-5062e04711dbc4f67b24ffd926cc67060267792d.tar.gz
kernel-qcow2-linux-5062e04711dbc4f67b24ffd926cc67060267792d.tar.xz
kernel-qcow2-linux-5062e04711dbc4f67b24ffd926cc67060267792d.zip
regulator: anatop: use of_property_read_string to read the name
sreg->name is a string, so use a more proper api to read back the string instead of of_get_property. Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/anatop-regulator.c')
-rw-r--r--drivers/regulator/anatop-regulator.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/regulator/anatop-regulator.c b/drivers/regulator/anatop-regulator.c
index aa93f462ac6e..58141cbdf257 100644
--- a/drivers/regulator/anatop-regulator.c
+++ b/drivers/regulator/anatop-regulator.c
@@ -193,7 +193,8 @@ static int anatop_regulator_probe(struct platform_device *pdev)
sreg = devm_kzalloc(dev, sizeof(*sreg), GFP_KERNEL);
if (!sreg)
return -ENOMEM;
- sreg->name = of_get_property(np, "regulator-name", NULL);
+
+ of_property_read_string(np, "regulator-name", &sreg->name);
rdesc = &sreg->rdesc;
rdesc->name = sreg->name;
rdesc->type = REGULATOR_VOLTAGE;