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:
parent
7f16b7fb94
commit
40a8ed84aa
1 changed files with 4 additions and 4 deletions
|
@ -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";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue