From 7e2effdcac17d628dbf13377e5a4b7090acb6007 Mon Sep 17 00:00:00 2001 From: Sandy Huang Date: Sat, 30 Mar 2024 19:11:31 +0800 Subject: [PATCH] arm64: dts: rockchip: rk3562: 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: I1dcb3212dcab9c7fb45caab428d5e25dd4860a45 --- arch/arm64/boot/dts/rockchip/rk3562.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm64/boot/dts/rockchip/rk3562.dtsi b/arch/arm64/boot/dts/rockchip/rk3562.dtsi index d9e9064a2986..ef4cb43dcd19 100644 --- a/arch/arm64/boot/dts/rockchip/rk3562.dtsi +++ b/arch/arm64/boot/dts/rockchip/rk3562.dtsi @@ -578,7 +578,7 @@ #size-cells = <2>; ranges; - drm_logo: drm-logo@00000000 { + drm_logo: drm-logo@0 { compatible = "rockchip,drm-logo"; reg = <0x0 0x0 0x0 0x0>; }; @@ -588,7 +588,7 @@ reg = <0x0 0x0 0x0 0x0>; }; - drm_cubic_lut: drm-cubic-lut@00000000 { + drm_cubic_lut: drm-cubic-lut@0 { compatible = "rockchip,drm-cubic-lut"; reg = <0x0 0x0 0x0 0x0>; };