lantiq: fix syntax error for fritz736x
Add missing semicolon to the end of the property.
Remove whitespace while at it.
Fixes: 5a3b9d88f1
("lantiq: Improve support for LED's fritz736x")
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
Link: https://github.com/openwrt/openwrt/pull/18594
Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
parent
aa6d245e39
commit
38b14a8308
1 changed files with 6 additions and 6 deletions
|
@ -56,11 +56,11 @@
|
|||
};
|
||||
|
||||
fon {
|
||||
function = "fon"
|
||||
function = "fon";
|
||||
color = <LED_COLOR_ID_GREEN>;
|
||||
gpios = <&gpio 38 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
||||
|
||||
led_power_red: power_red {
|
||||
function = LED_FUNCTION_POWER;
|
||||
color = <LED_COLOR_ID_RED>;
|
||||
|
@ -68,7 +68,7 @@
|
|||
};
|
||||
|
||||
led_info_green: info_green {
|
||||
function = "info"
|
||||
function = "info";
|
||||
color = <LED_COLOR_ID_GREEN>;
|
||||
gpios = <&gpio 47 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
@ -80,13 +80,13 @@
|
|||
};
|
||||
|
||||
info_red {
|
||||
function = "info"
|
||||
color = <LED_COLOR_ID_RED
|
||||
function = "info";
|
||||
color = <LED_COLOR_ID_RED>;
|
||||
gpios = <&gpio 34 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
||||
dect {
|
||||
function = "dect"
|
||||
function = "dect";
|
||||
color = <LED_COLOR_ID_GREEN>;
|
||||
gpios = <&gpio 35 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue