Skip to content

Commit 467af2d

Browse files
jpmurnashif
authored andcommitted
boards: arm: fix gpio-led flags on adi_eval_adin2111ebz
These LEDs are active-LOW instead of active-HIGH. Signed-off-by: Jason Murphy <jason.murphy@analog.com>
1 parent 40a8ed8 commit 467af2d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

boards/adi/eval_adin2111ebz/adi_eval_adin2111ebz.dts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,23 @@
2424
leds {
2525
compatible = "gpio-leds";
2626
blue_led: uC_led1 {
27-
gpios = <&gpiob 6 GPIO_ACTIVE_HIGH>;
27+
gpios = <&gpiob 6 GPIO_ACTIVE_LOW>;
2828
label = "Debug led uC1";
2929
};
3030
net_red_led: led_NET1 {
31-
gpios = <&gpiob 10 GPIO_ACTIVE_HIGH>;
31+
gpios = <&gpiob 10 GPIO_ACTIVE_LOW>;
3232
label = "NET led 1";
3333
};
3434
net_green_led: led_NET2 {
35-
gpios = <&gpiob 11 GPIO_ACTIVE_HIGH>;
35+
gpios = <&gpiob 11 GPIO_ACTIVE_LOW>;
3636
label = "NET led 2";
3737
};
3838
mod_red_led: led_MOD1 {
39-
gpios = <&gpioe 2 GPIO_ACTIVE_HIGH>;
39+
gpios = <&gpioe 2 GPIO_ACTIVE_LOW>;
4040
label = "Mod led 1";
4141
};
4242
mod_green_led: led_MOD2 {
43-
gpios = <&gpioe 6 GPIO_ACTIVE_HIGH>;
43+
gpios = <&gpioe 6 GPIO_ACTIVE_LOW>;
4444
label = "Mod led 2";
4545
};
4646
};

0 commit comments

Comments
 (0)