boards: arm: dts: remove unnecessary interrupt flag

Remove unnecessary GPIO_INT_ACTIVE_LOW flag from led node.

Signed-off-by: Johann Fischer <j.fischer@phytec.de>
This commit is contained in:
Johann Fischer 2018-09-20 11:57:55 +02:00 committed by Kumar Gala
commit b64b9e7846
9 changed files with 22 additions and 22 deletions

View file

@ -32,15 +32,15 @@
leds {
compatible = "gpio-leds";
red_led: led@0 {
gpios = <&gpiob 18 GPIO_INT_ACTIVE_LOW>;
gpios = <&gpiob 18 0>;
label = "User LD1";
};
green_led: led@1 {
gpios = <&gpiob 19 GPIO_INT_ACTIVE_LOW>;
gpios = <&gpiob 19 0>;
label = "User LD2";
};
blue_led: led@2 {
gpios = <&gpiod 1 GPIO_INT_ACTIVE_LOW>;
gpios = <&gpiod 1 0>;
label = "User LD3";
};
};