diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-07-06 21:46:45 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-07-09 14:38:58 -0400 |
commit | b86bbddd6f40c1241aa6cad049a4cdf7d529f09e (patch) | |
tree | 7eeee53e57798d810d742db705f01c2c82030703 /drivers/regulator | |
parent | d1ef065d43476fd0e245cad2ef1d226e7cb6324b (diff) |
regulator: da9052: Use for_each_child_of_node() macro
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/da9052-regulator.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/regulator/da9052-regulator.c b/drivers/regulator/da9052-regulator.c index 88976d8d44ed..5f8f71acb6c0 100644 --- a/drivers/regulator/da9052-regulator.c +++ b/drivers/regulator/da9052-regulator.c | |||
@@ -405,8 +405,7 @@ static int __devinit da9052_regulator_probe(struct platform_device *pdev) | |||
405 | if (!nproot) | 405 | if (!nproot) |
406 | return -ENODEV; | 406 | return -ENODEV; |
407 | 407 | ||
408 | for (np = of_get_next_child(nproot, NULL); np; | 408 | for_each_child_of_node(nproot, np) { |
409 | np = of_get_next_child(nproot, np)) { | ||
410 | if (!of_node_cmp(np->name, | 409 | if (!of_node_cmp(np->name, |
411 | regulator->info->reg_desc.name)) { | 410 | regulator->info->reg_desc.name)) { |
412 | config.init_data = of_get_regulator_init_data( | 411 | config.init_data = of_get_regulator_init_data( |