ramips: fix lan leds for Wavlink WL-WN535K1

Previously both lan1 and lan2 leds were wrongly labelled as lan2.
Moreover they were connected to the wrong lan port.
Fixes 8fde82095b ("ramips: add support for Wavlink WL-WN535K1")

Reported-by: Nicolò Maria Semprini <nicosemp@gmail.com>
Signed-off-by: Davide Fioravanti <pantanastyle@gmail.com>
(cherry picked from commit c71dada926)
This commit is contained in:
Davide Fioravanti 2023-06-21 21:53:07 +02:00 committed by Hauke Mehrtens
parent 0a63e72fbb
commit fca03ea458
3 changed files with 5 additions and 5 deletions

View File

@ -48,12 +48,12 @@
lan1 {
label = "green:lan1";
gpios = <&gpio2 2 GPIO_ACTIVE_LOW>;
gpios = <&gpio2 3 GPIO_ACTIVE_LOW>;
};
lan2 {
label = "green:lan2";
gpios = <&gpio2 3 GPIO_ACTIVE_LOW>;
gpios = <&gpio2 2 GPIO_ACTIVE_LOW>;
};
wan {

View File

@ -219,8 +219,8 @@ tplink,re200-v1)
ucidef_set_led_netdev "lan" "lan" "green:lan" "eth0"
;;
wavlink,wl-wn535k1)
ucidef_set_led_switch "lan1" "lan2" "green:lan1" "switch0" "0x04"
ucidef_set_led_switch "lan2" "lan2" "green:lan2" "switch0" "0x20"
ucidef_set_led_switch "lan1" "lan1" "green:lan1" "switch0" "0x20"
ucidef_set_led_switch "lan2" "lan2" "green:lan2" "switch0" "0x04"
ucidef_set_led_switch "wan" "wan" "green:wan" "switch0" "0x10"
;;
wavlink,wl-wn579x3)

View File

@ -235,7 +235,7 @@ ramips_setup_interfaces()
;;
wavlink,wl-wn535k1)
ucidef_add_switch "switch0" \
"2:lan" "5:lan" "4:wan" "6@eth0"
"2:lan:2" "5:lan:1" "4:wan" "6@eth0"
;;
wavlink,wl-wn579x3)
ucidef_add_switch "switch0" \