From a0cb0a7dc852e5c054ecc595d54041c20ac0c39d Mon Sep 17 00:00:00 2001 From: Sandy Huang Date: Sat, 30 Mar 2024 19:11:31 +0800 Subject: [PATCH] arm64: dts: rockchip: rk3308: 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: I947dc5b7e94bf1e1ba231eb6d6d6ef22390c5f62 --- arch/arm64/boot/dts/rockchip/rk3308.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/rockchip/rk3308.dtsi b/arch/arm64/boot/dts/rockchip/rk3308.dtsi index e0ad7edd6960..107189003380 100644 --- a/arch/arm64/boot/dts/rockchip/rk3308.dtsi +++ b/arch/arm64/boot/dts/rockchip/rk3308.dtsi @@ -399,7 +399,7 @@ #size-cells = <2>; ranges; - drm_logo: drm-logo@00000000 { + drm_logo: drm-logo@0 { compatible = "rockchip,drm-logo"; reg = <0x0 0x0 0x0 0x0>; };