[openwrt/openwrt] lantiq: fix syntax error for fritz736x
LEDE Commits
lede-commits at lists.infradead.org
Fri Apr 25 06:21:11 PDT 2025
robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/38b14a8308642f779cccf3ff9b7b11b6fb7859c2
commit 38b14a8308642f779cccf3ff9b7b11b6fb7859c2
Author: Tianling Shen <cnsztl at immortalwrt.org>
AuthorDate: Fri Apr 25 18:00:25 2025 +0800
lantiq: fix syntax error for fritz736x
Add missing semicolon to the end of the property.
Remove whitespace while at it.
Fixes: 5a3b9d88f158 ("lantiq: Improve support for LED's fritz736x")
Signed-off-by: Tianling Shen <cnsztl at immortalwrt.org>
Link: https://github.com/openwrt/openwrt/pull/18594
Signed-off-by: Robert Marko <robimarko at gmail.com>
---
.../files/arch/mips/boot/dts/lantiq/vr9_avm_fritz736x.dtsi | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz736x.dtsi b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz736x.dtsi
index 95340c1983..9adc631369 100644
--- a/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz736x.dtsi
+++ b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_avm_fritz736x.dtsi
@@ -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>;
};
More information about the lede-commits
mailing list