mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
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. Fixes8fde82095b
("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 commitc71dada926
)
This commit is contained in:
parent
0a63e72fbb
commit
fca03ea458
@ -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 {
|
||||
|
@ -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)
|
||||
|
@ -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" \
|
||||
|
Loading…
Reference in New Issue
Block a user