Просмотр исходного кода

mediatek: leds-smartrg: handle disabled LEDs

If LEDs are disabled, they should not be handled.

Signed-off-by: Rosen Penev <[email protected]>
Link: https://github.com/openwrt/openwrt/pull/16651
Signed-off-by: Hauke Mehrtens <[email protected]>
Rosen Penev 1 год назад
Родитель
Сommit
a6252a6dfc
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      target/linux/mediatek/files/drivers/leds/leds-smartrg-system.c

+ 1 - 1
target/linux/mediatek/files/drivers/leds/leds-smartrg-system.c

@@ -177,7 +177,7 @@ srg_led_probe(struct i2c_client *client)
 
 	i2c_set_clientdata(client, sysled_ctrl);
 
-	for_each_child_of_node(np, child) {
+	for_each_available_child_of_node(np, child) {
 		if (srg_led_init_led(sysled_ctrl, child))
 			continue;