From 38b14a8308642f779cccf3ff9b7b11b6fb7859c2 Mon Sep 17 00:00:00 2001 From: Tianling Shen Date: Fri, 25 Apr 2025 18:00:25 +0800 Subject: [PATCH] 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 Link: https://github.com/openwrt/openwrt/pull/18594 Signed-off-by: Robert Marko --- .../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 95340c1983b..9adc6313699 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 = ; gpios = <&gpio 38 GPIO_ACTIVE_LOW>; }; - + led_power_red: power_red { function = LED_FUNCTION_POWER; color = ; @@ -68,7 +68,7 @@ }; led_info_green: info_green { - function = "info" + function = "info"; color = ; gpios = <&gpio 47 GPIO_ACTIVE_LOW>; }; @@ -80,13 +80,13 @@ }; info_red { - function = "info" - color = ; gpios = <&gpio 34 GPIO_ACTIVE_LOW>; }; dect { - function = "dect" + function = "dect"; color = ; gpios = <&gpio 35 GPIO_ACTIVE_LOW>; }; -- 2.47.2