diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-02-14 06:49:53 -0500 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-14 16:13:40 -0500 |
commit | ca1e3f33d919240b91331f34f01fe08e1bf22aad (patch) | |
tree | 68ee39f17ca0396228d154e7994fd943fb23d0bc | |
parent | 38dbfb59d1175ef458d006556061adeaa8751b72 (diff) |
regulator: 88pm8607: Use of_get_child_by_name
of_find_node_by_name walks the allnodes list, and can thus walk
outside of the parent node. Use of_get_child_by_name instead.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | drivers/regulator/88pm8607.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/88pm8607.c b/drivers/regulator/88pm8607.c index f704d83c93c4..fa99bfccaa6b 100644 --- a/drivers/regulator/88pm8607.c +++ b/drivers/regulator/88pm8607.c | |||
@@ -322,7 +322,7 @@ static int pm8607_regulator_dt_init(struct platform_device *pdev, | |||
322 | nproot = of_node_get(pdev->dev.parent->of_node); | 322 | nproot = of_node_get(pdev->dev.parent->of_node); |
323 | if (!nproot) | 323 | if (!nproot) |
324 | return -ENODEV; | 324 | return -ENODEV; |
325 | nproot = of_find_node_by_name(nproot, "regulators"); | 325 | nproot = of_get_child_by_name(nproot, "regulators"); |
326 | if (!nproot) { | 326 | if (!nproot) { |
327 | dev_err(&pdev->dev, "failed to find regulators node\n"); | 327 | dev_err(&pdev->dev, "failed to find regulators node\n"); |
328 | return -ENODEV; | 328 | return -ENODEV; |