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>
This commit is contained in:
parent
40a8ed84aa
commit
467af2d6b8
1 changed files with 5 additions and 5 deletions
|
@ -24,23 +24,23 @@
|
|||
leds {
|
||||
compatible = "gpio-leds";
|
||||
blue_led: uC_led1 {
|
||||
gpios = <&gpiob 6 GPIO_ACTIVE_HIGH>;
|
||||
gpios = <&gpiob 6 GPIO_ACTIVE_LOW>;
|
||||
label = "Debug led uC1";
|
||||
};
|
||||
net_red_led: led_NET1 {
|
||||
gpios = <&gpiob 10 GPIO_ACTIVE_HIGH>;
|
||||
gpios = <&gpiob 10 GPIO_ACTIVE_LOW>;
|
||||
label = "NET led 1";
|
||||
};
|
||||
net_green_led: led_NET2 {
|
||||
gpios = <&gpiob 11 GPIO_ACTIVE_HIGH>;
|
||||
gpios = <&gpiob 11 GPIO_ACTIVE_LOW>;
|
||||
label = "NET led 2";
|
||||
};
|
||||
mod_red_led: led_MOD1 {
|
||||
gpios = <&gpioe 2 GPIO_ACTIVE_HIGH>;
|
||||
gpios = <&gpioe 2 GPIO_ACTIVE_LOW>;
|
||||
label = "Mod led 1";
|
||||
};
|
||||
mod_green_led: led_MOD2 {
|
||||
gpios = <&gpioe 6 GPIO_ACTIVE_HIGH>;
|
||||
gpios = <&gpioe 6 GPIO_ACTIVE_LOW>;
|
||||
label = "Mod led 2";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue