diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-07-07 09:46:45 +0800 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-07-09 19:38:58 +0100 |
commit | b86bbddd6f40c1241aa6cad049a4cdf7d529f09e (patch) | |
tree | 7eeee53e57798d810d742db705f01c2c82030703 /drivers/regulator/da9052-regulator.c | |
parent | d1ef065d43476fd0e245cad2ef1d226e7cb6324b (diff) | |
download | op-kernel-dev-b86bbddd6f40c1241aa6cad049a4cdf7d529f09e.zip op-kernel-dev-b86bbddd6f40c1241aa6cad049a4cdf7d529f09e.tar.gz |
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/da9052-regulator.c')
-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 88976d8..5f8f71a 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) if (!nproot) return -ENODEV; - for (np = of_get_next_child(nproot, NULL); np; - np = of_get_next_child(nproot, np)) { + for_each_child_of_node(nproot, np) { if (!of_node_cmp(np->name, regulator->info->reg_desc.name)) { config.init_data = of_get_regulator_init_data( |