From: Andy Shevchenko Date: Tue, 23 Jul 2019 20:14:58 +0000 (+0300) Subject: leds: lm36274: Switch to use fwnode_property_count_uXX() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ebefec8d9fc07eafa7434df1a1c2447b0ea96e50;p=linux.git leds: lm36274: Switch to use fwnode_property_count_uXX() Use fwnode_property_count_uXX() directly, that makes code neater. Signed-off-by: Andy Shevchenko Acked-by: Dan Murphy Signed-off-by: Jacek Anaszewski --- diff --git a/drivers/leds/leds-lm36274.c b/drivers/leds/leds-lm36274.c index ed9dc857ec8f3..836b60c9a2b80 100644 --- a/drivers/leds/leds-lm36274.c +++ b/drivers/leds/leds-lm36274.c @@ -90,9 +90,7 @@ static int lm36274_parse_dt(struct lm36274 *lm36274_data) snprintf(label, sizeof(label), "%s:%s", lm36274_data->pdev->name, name); - lm36274_data->num_leds = fwnode_property_read_u32_array(child, - "led-sources", - NULL, 0); + lm36274_data->num_leds = fwnode_property_count_u32(child, "led-sources"); if (lm36274_data->num_leds <= 0) return -ENODEV;