From: Tobias Klauser Date: Tue, 21 Aug 2012 09:21:53 +0000 (+0800) Subject: leds: leds-gpio: Use of_get_child_count() helper X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=127aedc8ecae2628511533ddeb239e99e4bed5e8;p=linux-beck.git leds: leds-gpio: Use of_get_child_count() helper Use of_get_child_count() instead of custom implementation. Signed-off-by: Tobias Klauser Signed-off-by: Bryan Wu --- diff --git a/drivers/leds/leds-gpio.c b/drivers/leds/leds-gpio.c index c392c1e95531..cde85ba1903a 100644 --- a/drivers/leds/leds-gpio.c +++ b/drivers/leds/leds-gpio.c @@ -170,11 +170,10 @@ static struct gpio_leds_priv * __devinit gpio_leds_create_of(struct platform_dev { struct device_node *np = pdev->dev.of_node, *child; struct gpio_leds_priv *priv; - int count = 0, ret; + int count, ret; /* count LEDs in this device, so we know how much to allocate */ - for_each_child_of_node(np, child) - count++; + count = of_get_child_count(np); if (!count) return NULL;