mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
led: pwm: Drop duplicate OF "label" property parsing
The OF "label" property parsing is now handled in LED core, drop the duplicate implementation from this driver. Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
4228023eff
commit
d797dd4c1e
1 changed files with 0 additions and 10 deletions
|
@ -151,21 +151,11 @@ static int led_pwm_bind(struct udevice *parent)
|
|||
int ret;
|
||||
|
||||
dev_for_each_subnode(node, parent) {
|
||||
struct led_uc_plat *uc_plat;
|
||||
const char *label;
|
||||
|
||||
label = ofnode_read_string(node, "label");
|
||||
if (!label)
|
||||
label = ofnode_get_name(node);
|
||||
|
||||
ret = device_bind_driver_to_node(parent, LEDS_PWM_DRIVER_NAME,
|
||||
ofnode_get_name(node),
|
||||
node, &dev);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
uc_plat = dev_get_uclass_plat(dev);
|
||||
uc_plat->label = label;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue