Skip to content

Commit adee8aa

Browse files
committed
Revert "arm: dts: at91: Fix boolean properties with values"
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>
1 parent 310b663 commit adee8aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arch/arm/boot/dts/at91-kizbox3-hs.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@
225225
pinctrl_pio_io_reset: gpio_io_reset {
226226
pinmux = <PIN_PB30__GPIO>;
227227
bias-disable;
228-
drive-open-drain;
228+
drive-open-drain = <1>;
229229
output-low;
230230
};
231231
pinctrl_pio_input: gpio_input {

arch/arm/boot/dts/at91-kizbox3_common.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211
pinmux = <PIN_PD12__FLEXCOM4_IO0>, //DATA
212212
<PIN_PD13__FLEXCOM4_IO1>; //CLK
213213
bias-disable;
214-
drive-open-drain;
214+
drive-open-drain = <1>;
215215
};
216216

217217
pinctrl_pwm0 {

0 commit comments

Comments
 (0)