Skip to content

Commit

Permalink
Revert "arm: dts: at91: Fix boolean properties with values"
Browse files Browse the repository at this point in the history
This reverts commit 0dc23d1, which caused another regression
as the pinctrl code actually expects an integer value of 0 or 1
rather than a simple boolean property.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
  • Loading branch information
Arnd Bergmann committed Apr 29, 2022
1 parent 310b663 commit adee8aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/arm/boot/dts/at91-kizbox3-hs.dts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
pinctrl_pio_io_reset: gpio_io_reset {
pinmux = <PIN_PB30__GPIO>;
bias-disable;
drive-open-drain;
drive-open-drain = <1>;
output-low;
};
pinctrl_pio_input: gpio_input {
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/boot/dts/at91-kizbox3_common.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
pinmux = <PIN_PD12__FLEXCOM4_IO0>, //DATA
<PIN_PD13__FLEXCOM4_IO1>; //CLK
bias-disable;
drive-open-drain;
drive-open-drain = <1>;
};

pinctrl_pwm0 {
Expand Down

0 comments on commit adee8aa

Please sign in to comment.