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>
This commit is contained in:
Daniel Golle 2022-07-04 18:42:20 +01:00
parent 1d3b57dbee
commit f58e562b07
No known key found for this signature in database
GPG Key ID: 5A8F39C31C3217CA

View File

@ -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>;
};
};