boards: lpcxpresso55s69: Add pullup/pulldown fields to user buttons

Pinmux initialization function for lpcxpresso55s69 was setting user
button gpios as pullups, now that pin control will be used these
settings should be handled by the GPIO driver.

Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
This commit is contained in:
Daniel DeGrasse 2022-04-01 09:03:04 -05:00 committed by Marti Bolivar
commit f7f8529365

View file

@ -43,15 +43,15 @@
compatible = "gpio-keys"; compatible = "gpio-keys";
user_button_1: button_0 { user_button_1: button_0 {
label = "User SW1"; label = "User SW1";
gpios = <&gpio0 5 GPIO_ACTIVE_HIGH>; gpios = <&gpio0 5 (GPIO_ACTIVE_HIGH | GPIO_PULL_UP)>;
}; };
user_button_2: button_1 { user_button_2: button_1 {
label = "User SW2"; label = "User SW2";
gpios = <&gpio1 18 GPIO_ACTIVE_LOW>; gpios = <&gpio1 18 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
}; };
user_button_3: button_2 { user_button_3: button_2 {
label = "User SW3"; label = "User SW3";
gpios = <&gpio1 9 GPIO_ACTIVE_LOW>; gpios = <&gpio1 9 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
}; };
}; };