mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 05:26:07 +00:00
leds: lt3593: Put fwnode in any case during ->probe()
device_get_next_child_node() bumps a reference counting of a returned variable. We have to balance it whenever we return to the caller. Fixes: 8cd7d6daba93 ("leds: lt3593: Add device tree probing glue") Cc: Daniel Mack <daniel@zonque.org> Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Pavel Machek <pavel@ucw.cz>
This commit is contained in:
parent
d299ae942e
commit
7e1baaaa24
@ -97,10 +97,9 @@ static int lt3593_led_probe(struct platform_device *pdev)
|
|||||||
init_data.default_label = ":";
|
init_data.default_label = ":";
|
||||||
|
|
||||||
ret = devm_led_classdev_register_ext(dev, &led_data->cdev, &init_data);
|
ret = devm_led_classdev_register_ext(dev, &led_data->cdev, &init_data);
|
||||||
if (ret < 0) {
|
fwnode_handle_put(child);
|
||||||
fwnode_handle_put(child);
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
|
||||||
|
|
||||||
platform_set_drvdata(pdev, led_data);
|
platform_set_drvdata(pdev, led_data);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user