diff options
author | Daniel Golle <daniel@makrotopia.org> | 2022-07-04 18:42:20 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2022-07-04 19:58:18 +0100 |
commit | 6b78bf1fd8038d6dbbfc3adf382ea3dca9485ff6 (patch) | |
tree | 92025001f5c8867fd0516c635a167a1ead0fd06e /target/linux | |
parent | 5a82803c76ccd39f27ec749f136fc5dcd357449a (diff) | |
download | upstream-6b78bf1fd8038d6dbbfc3adf382ea3dca9485ff6.tar.gz upstream-6b78bf1fd8038d6dbbfc3adf382ea3dca9485ff6.tar.bz2 upstream-6b78bf1fd8038d6dbbfc3adf382ea3dca9485ff6.zip |
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@makrotopia.org>
(cherry picked from commit f58e562b07803192d029a6be8c8c372e1ed11c68)
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/mediatek/dts/mt7622-ubnt-unifi-6-lr-v2.dtsi | 4 |
1 files changed, 1 insertions, 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>; }; }; |