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:
197bf85
)
regulator: s5m8767: Use of_get_child_count()
author
Axel Lin
<axel.lin@ingics.com>
Wed, 6 Feb 2013 02:55:05 +0000
(10:55 +0800)
committer
Mark Brown
<broonie@opensource.wolfsonmicro.com>
Fri, 8 Feb 2013 11:16:40 +0000
(11:16 +0000)
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/regulator/s5m8767.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/regulator/s5m8767.c
b/drivers/regulator/s5m8767.c
index 1250cef43d7bfb22383beb3c2cfab642ddf19351..194b5dd3062810c9ac672d56eb5dc97b7ae2fb27 100644
(file)
--- a/
drivers/regulator/s5m8767.c
+++ b/
drivers/regulator/s5m8767.c
@@
-536,9
+536,7
@@
static int s5m8767_pmic_dt_parse_pdata(struct sec_pmic_dev *iodev,
}
/* count the number of regulators to be supported in pmic */
- pdata->num_regulators = 0;
- for_each_child_of_node(regulators_np, reg_np)
- pdata->num_regulators++;
+ pdata->num_regulators = of_get_child_count(regulators_np);
rdata = devm_kzalloc(iodev->dev, sizeof(*rdata) *
pdata->num_regulators, GFP_KERNEL);