diff options
author | Rob Herring <robh@kernel.org> | 2022-04-06 22:09:47 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2022-04-07 15:02:25 +0300 |
commit | 0dc23d1a8e17839f1c071302b5f3e04a34692d44 (patch) | |
tree | dd56d871748c998681495514a2be1d7c9e10ffdd /arch/arm/boot/dts/at91-kizbox3_common.dtsi | |
parent | 1f5fb1dc7497776a7dd12420ae87382e61718bf5 (diff) | |
download | linux-0dc23d1a8e17839f1c071302b5f3e04a34692d44.tar.xz |
arm: dts: at91: Fix boolean properties with values
Boolean properties in DT are present or not present and don't take a value.
A property such as 'foo = <0>;' evaluated to true. IOW, the value doesn't
matter.
It may have been intended that 0 values are false, but there is no change
in behavior with this patch.
Signed-off-by: Rob Herring <robh@kernel.org>
Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Link: https://lore.kernel.org/r/Yk3leykDEKGBN8rk@robh.at.kernel.org'
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/boot/dts/at91-kizbox3_common.dtsi')
-rw-r--r-- | arch/arm/boot/dts/at91-kizbox3_common.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/at91-kizbox3_common.dtsi b/arch/arm/boot/dts/at91-kizbox3_common.dtsi index abe27adfa4d6..465664628419 100644 --- a/arch/arm/boot/dts/at91-kizbox3_common.dtsi +++ b/arch/arm/boot/dts/at91-kizbox3_common.dtsi @@ -211,7 +211,7 @@ pinmux = <PIN_PD12__FLEXCOM4_IO0>, //DATA <PIN_PD13__FLEXCOM4_IO1>; //CLK bias-disable; - drive-open-drain = <1>; + drive-open-drain; }; pinctrl_pwm0 { |