Skip to content

Commit ae4358f

Browse files
Alain Volmatkartben
authored andcommitted
boards: st: stm32mp135f_dk: correct led_1 / led_2 polarity
blue and red leds polarity is ACTIVE_LOW hence correct the DT to have them behave correctly. Signed-off-by: Alain Volmat <alain.volmat@foss.st.com>
1 parent 285d1d2 commit ae4358f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

boards/st/stm32mp135f_dk/stm32mp135f_dk.dts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@
3737
compatible = "gpio-leds";
3838

3939
blue_led_1: led_1 {
40-
gpios = <&gpioa 14 GPIO_ACTIVE_HIGH>;
40+
gpios = <&gpioa 14 GPIO_ACTIVE_LOW>;
4141
label = "LD3";
4242
};
4343

4444
red_led_2: led_2 {
45-
gpios = <&gpioa 13 GPIO_ACTIVE_HIGH>;
45+
gpios = <&gpioa 13 GPIO_ACTIVE_LOW>;
4646
label = "LD4";
4747
};
4848
};

0 commit comments

Comments
 (0)