On 25/09/2020 05:30, Artem Lapkin wrote: > GPIO_ACTIVE_LOW replaced to GPIO_ACTIVE_HIGH for white and red leds > > Signed-off-by: Artem Lapkin <art@xxxxxxxxxx> > --- > arch/arm64/boot/dts/amlogic/meson-khadas-vim3.dtsi | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/arm64/boot/dts/amlogic/meson-khadas-vim3.dtsi b/arch/arm64/boot/dts/amlogic/meson-khadas-vim3.dtsi > index 94f75b44650..73783692e30 100644 > --- a/arch/arm64/boot/dts/amlogic/meson-khadas-vim3.dtsi > +++ b/arch/arm64/boot/dts/amlogic/meson-khadas-vim3.dtsi > @@ -41,13 +41,13 @@ leds { > > led-white { > label = "vim3:white:sys"; > - gpios = <&gpio_ao GPIOAO_4 GPIO_ACTIVE_LOW>; > + gpios = <&gpio_ao GPIOAO_4 GPIO_ACTIVE_HIGH>; > linux,default-trigger = "heartbeat"; > }; > > led-red { > label = "vim3:red"; > - gpios = <&gpio_expander 5 GPIO_ACTIVE_LOW>; > + gpios = <&gpio_expander 5 GPIO_ACTIVE_HIGH>; > }; > }; > > This has already been fixed and applied for 5.10: https://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-amlogic.git/commit/?h=v5.10/dt64&id=1f9d87d08e4a2299e86f8a1600aedf87ecd3b636 Neil