diff options
author | Rodrigo B. de Sousa Martins <rodrigo.sousa.577@gmail.com> | 2021-11-15 13:23:27 -0300 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2022-07-12 09:25:43 +0200 |
commit | ae07b9cc6198ac7f68a52dc6f3da5c86d0393903 (patch) | |
tree | 0b855e3d810b3e69a8bd85c69fe683c4a2197105 /target/linux | |
parent | 7c02a4a00bab5abd90d03b6ef2b1644c2b8874db (diff) | |
download | upstream-ae07b9cc6198ac7f68a52dc6f3da5c86d0393903.tar.gz upstream-ae07b9cc6198ac7f68a52dc6f3da5c86d0393903.tar.bz2 upstream-ae07b9cc6198ac7f68a52dc6f3da5c86d0393903.zip |
ath79: tplink-archer-c6-v2-us: fix inverted LED colors
The amber and green wan led color was inverted in dts file, which ends
up leaving the wan led amber when the connection is established, so,
switch gpio led number (7 and 8) in qca9563_tplink_archer-c6-v2-us.dts.
Tip: the /etc/config/system file needs to be regenerated.
Signed-off-by: Rodrigo B. de Sousa Martins <rodrigo.sousa.577@gmail.com>
Signed-off-by: Petr Štetiar <ynezz@true.cz> [commit subject]
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ath79/dts/qca9563_tplink_archer-c6-v2-us.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ath79/dts/qca9563_tplink_archer-c6-v2-us.dts b/target/linux/ath79/dts/qca9563_tplink_archer-c6-v2-us.dts index 76e19294f8..e6fd689c99 100644 --- a/target/linux/ath79/dts/qca9563_tplink_archer-c6-v2-us.dts +++ b/target/linux/ath79/dts/qca9563_tplink_archer-c6-v2-us.dts @@ -43,12 +43,12 @@ wan { label = "green:wan"; - gpios = <&gpio 8 GPIO_ACTIVE_LOW>; + gpios = <&gpio 7 GPIO_ACTIVE_LOW>; }; wan_fail { label = "amber:wan"; - gpios = <&gpio 7 GPIO_ACTIVE_LOW>; + gpios = <&gpio 8 GPIO_ACTIVE_LOW>; }; wps { |