From 8a8629fbded1199bdd4352572f1def10bf5cb28d Mon Sep 17 00:00:00 2001 From: Sandy Huang Date: Sat, 30 Mar 2024 19:16:20 +0800 Subject: [PATCH] ARM: dts: rockchip: rv1126: Fixes warning in unit address of drm-logo /reserved-memory/drm-logo@00000000 refers to a node in the device tree. The part after the @ symbol is the unit address, which should match the physical or logical address of the device or memory region being described. The warning indicates that the unit name (in this case, 00000000) should not have leading zeros. This is more about adhering to conventions and ensuring compatibility and readability than about functional correctness. Signed-off-by: Sandy Huang Change-Id: I5052698913a2ff8202dbc0f8c2144acd48cb4ac5 --- arch/arm/boot/dts/rv1126.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/rv1126.dtsi b/arch/arm/boot/dts/rv1126.dtsi index ca9ba07a0e1f..7185cabbd555 100644 --- a/arch/arm/boot/dts/rv1126.dtsi +++ b/arch/arm/boot/dts/rv1126.dtsi @@ -384,7 +384,7 @@ linux,cma-default; }; - drm_logo: drm-logo@00000000 { + drm_logo: drm-logo@0 { compatible = "rockchip,drm-logo"; reg = <0x0 0x0>; };