leds: led-core: Update fwnode with device_set_node
Update a newly created device's fwnode and of_node pointers using the recently added device_set_node helper. This keeps some firmware node specifics out of led-class and should help tracking future changes regarding device firmware node updates. Signed-off-by: Sander Vanheule <sander@svanheule.net> Signed-off-by: Pavel Machek <pavel@ucw.cz>
This commit is contained in:
parent
fa019ba4f2
commit
495b8966f7
@ -375,10 +375,8 @@ int led_classdev_register_ext(struct device *parent,
|
|||||||
mutex_unlock(&led_cdev->led_access);
|
mutex_unlock(&led_cdev->led_access);
|
||||||
return PTR_ERR(led_cdev->dev);
|
return PTR_ERR(led_cdev->dev);
|
||||||
}
|
}
|
||||||
if (init_data && init_data->fwnode) {
|
if (init_data && init_data->fwnode)
|
||||||
led_cdev->dev->fwnode = init_data->fwnode;
|
device_set_node(led_cdev->dev, init_data->fwnode);
|
||||||
led_cdev->dev->of_node = to_of_node(init_data->fwnode);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ret)
|
if (ret)
|
||||||
dev_warn(parent, "Led %s renamed to %s due to name collision",
|
dev_warn(parent, "Led %s renamed to %s due to name collision",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user