]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
ARM: dts: vf: remove reg property for arm pmu
authorFrank Li <Frank.Li@nxp.com>
Fri, 23 May 2025 16:17:20 +0000 (12:17 -0400)
committerShawn Guo <shawnguo@kernel.org>
Thu, 19 Jun 2025 07:44:25 +0000 (15:44 +0800)
Remove reg property for arm pmu to align binding doc and move it under root
node to fix below CHECK_DTB warning:

arch/arm/boot/dts/nxp/vf/vf610-zii-ssmb-dtu.dtb: pmu@40089000 (arm,cortex-a5-pmu): 'reg' does not match any of the regexes: 'pinctrl-[0-9]+'

Signed-off-by: Frank Li <Frank.Li@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
arch/arm/boot/dts/nxp/vf/vf500.dtsi

index 0c0dd442300a38509abca960a4534f26f0e5f200..71ccdaa6f269a9cd49cd8370f28f81fe333dd0cc 100644 (file)
                        };
                };
 
-               bus@40080000 {
-                       pmu@40089000 {
-                               compatible = "arm,cortex-a5-pmu";
-                               interrupts = <7 IRQ_TYPE_LEVEL_HIGH>;
-                               interrupt-affinity = <&a5_cpu>;
-                               reg = <0x40089000 0x1000>;
-                       };
-               };
+       };
 
+       pmu {
+               compatible = "arm,cortex-a5-pmu";
+               interrupts = <7 IRQ_TYPE_LEVEL_HIGH>;
+               interrupt-affinity = <&a5_cpu>;
+               interrupt-parent = <&mscm_ir>;
        };
 };