All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] regulator: s5m8767: Use of_get_child_count()
@ 2013-02-06  2:55 Axel Lin
  2013-02-06  2:56 ` [PATCH 2/3] regulator: s5m8767: Fix using wrong dev argument at various places Axel Lin
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Axel Lin @ 2013-02-06  2:55 UTC (permalink / raw)
  To: Mark Brown
  Cc: Amit Daniel Kachhap, Sachin Kamat, Thomas Abraham, Sangbeom Kim,
	LiamGirdwood, linux-kernel

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 drivers/regulator/s5m8767.c |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/regulator/s5m8767.c b/drivers/regulator/s5m8767.c
index 1250cef..194b5dd 100644
--- 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);
-- 
1.7.9.5




^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-02-10 10:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-06  2:55 [PATCH 1/3] regulator: s5m8767: Use of_get_child_count() Axel Lin
2013-02-06  2:56 ` [PATCH 2/3] regulator: s5m8767: Fix using wrong dev argument at various places Axel Lin
2013-02-08 11:20   ` Mark Brown
2013-02-10 10:15     ` Axel Lin
2013-02-06  2:58 ` [PATCH 3/3] regulator: s5m8767: Prevent possible NULL pointer dereference Axel Lin
2013-02-08 11:22 ` [PATCH 1/3] regulator: s5m8767: Use of_get_child_count() Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.