boards: arm: fix gpio-led flags on adi_eval_adin1110ebz

These LEDs are active-LOW instead of active-HIGH.

Signed-off-by: Jason Murphy <jason.murphy@analog.com>
This commit is contained in:
Jason Murphy 2024-02-20 17:35:56 +00:00 committed by Anas Nashif
commit 40a8ed84aa

View file

@ -34,19 +34,19 @@
leds { /* Respecting pcb silkscreen naming */
compatible = "gpio-leds";
green_led: led_uC0 {
gpios = <&gpioc 13 GPIO_ACTIVE_HIGH>;
gpios = <&gpioc 13 GPIO_ACTIVE_LOW>;
label = "Status uC0";
};
red_led: led_uC1 {
gpios = <&gpioe 2 GPIO_ACTIVE_HIGH>;
gpios = <&gpioe 2 GPIO_ACTIVE_LOW>;
label = "Status uC1 ";
};
yellow_led: led_uC2 {
gpios = <&gpioe 6 GPIO_ACTIVE_HIGH>;
gpios = <&gpioe 6 GPIO_ACTIVE_LOW>;
label = "Status uC2";
};
blue_led: led_uC3 {
gpios = <&gpiog 15 GPIO_ACTIVE_HIGH>;
gpios = <&gpiog 15 GPIO_ACTIVE_LOW>;
label = "Status uC3";
};
};