diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-02-14 06:49:56 -0500 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-14 16:16:30 -0500 |
commit | b327bcc0accf6003fab7177790f0bcafc7a49618 (patch) | |
tree | 22a3f47c95ff11fd9a05223bc5e05fd8b949426f | |
parent | 38dbfb59d1175ef458d006556061adeaa8751b72 (diff) |
regulator: da9052: 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/da9052-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/da9052-regulator.c b/drivers/regulator/da9052-regulator.c index 3adeaeffc485..889c7c9b9f15 100644 --- a/drivers/regulator/da9052-regulator.c +++ b/drivers/regulator/da9052-regulator.c | |||
@@ -401,7 +401,7 @@ static int da9052_regulator_probe(struct platform_device *pdev) | |||
401 | if (!nproot) | 401 | if (!nproot) |
402 | return -ENODEV; | 402 | return -ENODEV; |
403 | 403 | ||
404 | nproot = of_find_node_by_name(nproot, "regulators"); | 404 | nproot = of_get_child_by_name(nproot, "regulators"); |
405 | if (!nproot) | 405 | if (!nproot) |
406 | return -ENODEV; | 406 | return -ENODEV; |
407 | 407 | ||