diff options
| author | Jihed Chaibi <jihed.chaibi.dev@gmail.com> | 2025-08-23 00:50:52 +0200 |
|---|---|---|
| committer | Kevin Hilman <khilman@baylibre.com> | 2025-09-05 14:34:40 -0700 |
| commit | 5af5b85505bc859adb338fe5d6e4842e72cdf932 (patch) | |
| tree | f645a99e369ac17842bffa84a2904cbd428ab92c | |
| parent | ARM: dts: ti: omap: am335x-baltos: Fix ti,en-ck32k-xtal property in DTS to us... (diff) | |
| download | linux-5af5b85505bc859adb338fe5d6e4842e72cdf932.tar.gz linux-5af5b85505bc859adb338fe5d6e4842e72cdf932.zip | |
ARM: dts: ti: omap: omap3-devkit8000-lcd: Fix ti,keep-vref-on property to use correct boolean syntax in DTS
The ti,keep-vref-on property, defined as a boolean flag in the Device
Tree schema, was incorrectly assigned a value (<1>) in the DTS file,
causing a validation error: "size (4) error for type flag". Remove
the value to match the schema and ensure compatibility with the driver
using device_property_read_bool(). This fixes the dtbs_check error.
Fixes: ed05637c30e6 ("ARM: dts: omap3-devkit8000: Add ADS7846 Touchscreen support")
Signed-off-by: Jihed Chaibi <jihed.chaibi.dev@gmail.com>
Link: https://lore.kernel.org/r/20250822225052.136919-1-jihed.chaibi.dev@gmail.com
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
| -rw-r--r-- | arch/arm/boot/dts/ti/omap/omap3-devkit8000-lcd-common.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/ti/omap/omap3-devkit8000-lcd-common.dtsi b/arch/arm/boot/dts/ti/omap/omap3-devkit8000-lcd-common.dtsi index a7f99ae0c1fe..78c657429f64 100644 --- a/arch/arm/boot/dts/ti/omap/omap3-devkit8000-lcd-common.dtsi +++ b/arch/arm/boot/dts/ti/omap/omap3-devkit8000-lcd-common.dtsi @@ -65,7 +65,7 @@ ti,debounce-max = /bits/ 16 <10>; ti,debounce-tol = /bits/ 16 <5>; ti,debounce-rep = /bits/ 16 <1>; - ti,keep-vref-on = <1>; + ti,keep-vref-on; ti,settle-delay-usec = /bits/ 16 <150>; wakeup-source; |
