[PATCH] ARM: dts: ti: omap: am335x-baltos: Fix ti,en-ck32k-xtal property in DTS to use correct boolean syntax

From: Jihed Chaibi
Date: Fri Aug 22 2025 - 18:27:39 EST


The ti,en-ck32k-xtal property, defined as a boolean 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". The driver uses
of_property_read_bool(), expecting a boolean. Remove the value to fix
the dtbs_check error.

Fixes: 262178b6b8e5
Signed-off-by: Jihed Chaibi <jihed.chaibi.dev@xxxxxxxxx>
---
arch/arm/boot/dts/ti/omap/am335x-baltos.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/ti/omap/am335x-baltos.dtsi b/arch/arm/boot/dts/ti/omap/am335x-baltos.dtsi
index ae2e8dffb..ea47f9960 100644
--- a/arch/arm/boot/dts/ti/omap/am335x-baltos.dtsi
+++ b/arch/arm/boot/dts/ti/omap/am335x-baltos.dtsi
@@ -269,7 +269,7 @@ &tps {
vcc7-supply = <&vbat>;
vccio-supply = <&vbat>;

- ti,en-ck32k-xtal = <1>;
+ ti,en-ck32k-xtal;

regulators {
vrtc_reg: regulator@0 {
--
2.39.5