[openwrt/openwrt] mediatek: mt7622: fix white dome LED of UniFi 6 LR
LEDE Commits
lede-commits at lists.infradead.org
Mon Jul 4 11:59:04 PDT 2022
dangole pushed a commit to openwrt/openwrt.git, branch openwrt-22.03:
https://git.openwrt.org/6b78bf1fd8038d6dbbfc3adf382ea3dca9485ff6
commit 6b78bf1fd8038d6dbbfc3adf382ea3dca9485ff6
Author: Daniel Golle <daniel at makrotopia.org>
AuthorDate: Mon Jul 4 18:42:20 2022 +0100
mediatek: mt7622: fix white dome LED of UniFi 6 LR
The recent differentiation between v1 and v2 of the UniFi 6 LR added
support for the v2 version which has GPIO-controlled LEDs instead of
using an additional microcontroller to drive an RGB led.
The polarity of the white LED, however, was inverted and the default
states didn't make a lot of sense after all. Fix that.
Signed-off-by: Daniel Golle <daniel at makrotopia.org>
(cherry picked from commit f58e562b07803192d029a6be8c8c372e1ed11c68)
---
target/linux/mediatek/dts/mt7622-ubnt-unifi-6-lr-v2.dtsi | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/target/linux/mediatek/dts/mt7622-ubnt-unifi-6-lr-v2.dtsi b/target/linux/mediatek/dts/mt7622-ubnt-unifi-6-lr-v2.dtsi
index 3e9cea7285..4d278805d4 100644
--- a/target/linux/mediatek/dts/mt7622-ubnt-unifi-6-lr-v2.dtsi
+++ b/target/linux/mediatek/dts/mt7622-ubnt-unifi-6-lr-v2.dtsi
@@ -13,13 +13,11 @@
led_white: dome_white {
label = "white:dome";
- linux,default-trigger = "default-on";
- gpios = <&pio 0x43 GPIO_ACTIVE_HIGH>;
+ gpios = <&pio 0x43 GPIO_ACTIVE_LOW>;
};
led_blue: dome_blue {
label = "blue:dome";
- default-state = "off";
gpios = <&pio 0x44 GPIO_ACTIVE_HIGH>;
};
};
More information about the lede-commits
mailing list