diff options
author | Rob Herring <robh@kernel.org> | 2022-04-06 14:13:11 -0500 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2022-04-07 14:03:32 +0200 |
commit | 3b881035e959cf39f046484e340e48a3e46a99db (patch) | |
tree | a5794501a356f98472875335a269b83a1a16f85a /arch/arm/boot/dts/imx6ul-phytec-segin-peb-av-02.dtsi | |
parent | 1a67653de0ddc67d274ce2762265ae18d58cc09a (diff) |
arm: dts: imx: 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/Yk3mR5yae3gCkKhp@robh.at.kernel.org'
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/boot/dts/imx6ul-phytec-segin-peb-av-02.dtsi')
-rw-r--r-- | arch/arm/boot/dts/imx6ul-phytec-segin-peb-av-02.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/imx6ul-phytec-segin-peb-av-02.dtsi b/arch/arm/boot/dts/imx6ul-phytec-segin-peb-av-02.dtsi index 7cda6944501d..205e4d462702 100644 --- a/arch/arm/boot/dts/imx6ul-phytec-segin-peb-av-02.dtsi +++ b/arch/arm/boot/dts/imx6ul-phytec-segin-peb-av-02.dtsi @@ -72,8 +72,8 @@ st,settling = <2>; st,fraction-z = <7>; st,i-drive = <1>; - touchscreen-inverted-x = <1>; - touchscreen-inverted-y = <1>; + touchscreen-inverted-x; + touchscreen-inverted-y; }; }; }; |