boards: stm32: Update board definition using new GPIO api

Move GPIO_ACTIVE_INT_HIGH/LOW to GPIO_ACTIVE_HIGH/LOW.

Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
This commit is contained in:
Erwan Gouriou 2019-10-03 18:30:21 +02:00 committed by Carles Cufí
commit 31ed7e931b
60 changed files with 214 additions and 215 deletions

View file

@ -21,7 +21,7 @@
leds {
compatible = "gpio-leds";
green_led_2: led_2 {
gpios = <&gpiod 13 GPIO_INT_ACTIVE_HIGH>;
gpios = <&gpiod 13 GPIO_ACTIVE_HIGH>;
label = "User LD2";
};
};
@ -30,7 +30,7 @@
compatible = "gpio-keys";
user_button: button {
label = "User";
gpios = <&gpiob 9 GPIO_INT_ACTIVE_LOW>;
gpios = <&gpiob 9 GPIO_ACTIVE_LOW>;
};
};