projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
38dbfb5
)
regulator: max8925: Use of_get_child_by_name
author
Sachin Kamat
<sachin.kamat@linaro.org>
Fri, 14 Feb 2014 11:49:51 +0000
(17:19 +0530)
committer
Mark Brown
<broonie@linaro.org>
Fri, 14 Feb 2014 21:10:50 +0000
(21:10 +0000)
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>
drivers/regulator/max8925-regulator.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/regulator/max8925-regulator.c
b/drivers/regulator/max8925-regulator.c
index 759510789e71db39b0b287f9849cea88827d50c4..5b939894bfc4e0b9ac7cd482a4f26fcd0ad4bbf9 100644
(file)
--- a/
drivers/regulator/max8925-regulator.c
+++ b/
drivers/regulator/max8925-regulator.c
@@
-254,7
+254,7
@@
static int max8925_regulator_dt_init(struct platform_device *pdev,
nproot = of_node_get(pdev->dev.parent->of_node);
if (!nproot)
return -ENODEV;
- np = of_
find_node
_by_name(nproot, "regulators");
+ np = of_
get_child
_by_name(nproot, "regulators");
if (!np) {
dev_err(&pdev->dev, "failed to find regulators node\n");
return -ENODEV;