diff options
author | Rob Herring <robh@kernel.org> | 2022-04-06 21:17:30 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2022-04-07 14:03:02 +0200 |
commit | 1a67653de0ddc67d274ce2762265ae18d58cc09a (patch) | |
tree | a95d4d81d94b9a02aaf6344e0d5803a1567214a8 /arch/arm64/boot/dts/nvidia/tegra194-p2888.dtsi | |
parent | arm: dts: at91: Fix boolean properties with values (diff) | |
download | linux-1a67653de0ddc67d274ce2762265ae18d58cc09a.tar.xz linux-1a67653de0ddc67d274ce2762265ae18d58cc09a.zip |
arm64: dts: tegra: 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>
Link: https://lore.kernel.org/r/Yk3nShkFzNJaI3/Z@robh.at.kernel.org'
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm64/boot/dts/nvidia/tegra194-p2888.dtsi')
-rw-r--r-- | arch/arm64/boot/dts/nvidia/tegra194-p2888.dtsi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm64/boot/dts/nvidia/tegra194-p2888.dtsi b/arch/arm64/boot/dts/nvidia/tegra194-p2888.dtsi index a7d7cfd66379..634d0f493c2e 100644 --- a/arch/arm64/boot/dts/nvidia/tegra194-p2888.dtsi +++ b/arch/arm64/boot/dts/nvidia/tegra194-p2888.dtsi @@ -174,19 +174,19 @@ gpio4 { pins = "gpio4"; function = "32k-out1"; - drive-push-pull = <1>; + drive-push-pull; }; gpio6 { pins = "gpio6"; function = "gpio"; - drive-push-pull = <1>; + drive-push-pull; }; gpio7 { pins = "gpio7"; function = "gpio"; - drive-push-pull = <0>; + drive-push-pull; }; }; |