diff options
author | 2025-01-08 21:07:10 -0300 | |
---|---|---|
committer | 2025-02-18 14:21:49 +0800 | |
commit | 8ce68566fa2ce8855860112d6c6188d460ea1cdb (patch) | |
tree | d2dd0d86672124d6337134017be160759d4951c0 /arch/arm/boot/dts/nxp/imx | |
parent | ARM: dts: imx7s: Move csi-mux to below root (diff) | |
download | wireguard-linux-8ce68566fa2ce8855860112d6c6188d460ea1cdb.tar.xz wireguard-linux-8ce68566fa2ce8855860112d6c6188d460ea1cdb.zip |
ARM: dts: imx53-ppd: Fix touchscreen reset-gpios
According to atmel,maxtouch.yaml, the correct property that describes
the GPIO connected to the touchscreen reset line is 'reset-gpios'.
Change it accordingly to fix the following dt-schema warning:
'reset-gpio' does not match any of the regexes: 'pinctrl-[0-9]+'
Signed-off-by: Fabio Estevam <festevam@denx.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/boot/dts/nxp/imx')
-rw-r--r-- | arch/arm/boot/dts/nxp/imx/imx53-ppd.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/nxp/imx/imx53-ppd.dts b/arch/arm/boot/dts/nxp/imx/imx53-ppd.dts index e939acc1c88b..2892e457fea7 100644 --- a/arch/arm/boot/dts/nxp/imx/imx53-ppd.dts +++ b/arch/arm/boot/dts/nxp/imx/imx53-ppd.dts @@ -593,7 +593,7 @@ touchscreen@4b { compatible = "atmel,maxtouch"; - reset-gpio = <&gpio5 19 GPIO_ACTIVE_LOW>; + reset-gpios = <&gpio5 19 GPIO_ACTIVE_LOW>; reg = <0x4b>; interrupt-parent = <&gpio5>; interrupts = <4 IRQ_TYPE_LEVEL_LOW>; |