mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 14:37:57 +00:00
4628e7ae4d
This backports a commit which fixes LEDs vor the RE200 like this:
Set power LED to gpio 43 instead of 44 for v3 and v4.
Set red wifi LED to gpio 40 (was assigned to `red:wifi5g`).
Tested by the author of the initial v3 and v4 commit.
Tested-by: Richard Fröhning <misanthropos@gmx.de>
Signed-off-by: Sungbo Eo <mans0n@gorani.run>
Signed-off-by: Jan-Niklas Burfeind <git@aiyionpri.me>
(cherry picked from commit 02aa7a2bb9
)
20 lines
333 B
Plaintext
20 lines
333 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "mt7628an_tplink_re200.dtsi"
|
|
|
|
/ {
|
|
compatible = "tplink,re200-v4", "mediatek,mt7628an-soc";
|
|
model = "TP-Link RE200 v4";
|
|
|
|
leds {
|
|
wifi_red {
|
|
label = "red:wifi";
|
|
gpios = <&gpio 40 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&led_power {
|
|
gpios = <&gpio 43 GPIO_ACTIVE_LOW>;
|
|
};
|