]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
ARM: dts: vfxxx: Correctly use two tuples for timer address
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Fri, 23 May 2025 07:19:22 +0000 (09:19 +0200)
committerShawn Guo <shawnguo@kernel.org>
Thu, 19 Jun 2025 07:41:03 +0000 (15:41 +0800)
Address and size-cells are 1 and the ftm timer node takes two address
spaces in "reg" property, so this should be in two <> tuples.  Change
has no functional impact, but original code is confusing/less readable.

Fixes: 07513e1330a9 ("ARM: dts: vf610: Add Freescale FlexTimer Module timer node.")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
arch/arm/boot/dts/nxp/vf/vfxxx.dtsi

index a275821c35d41e97eb2139a081ef5765d07672aa..124003c0be26a0cc3b3036b30411f50363117887 100644 (file)
 
                        ftm: ftm@400b8000 {
                                compatible = "fsl,ftm-timer";
-                               reg = <0x400b8000 0x1000 0x400b9000 0x1000>;
+                               reg = <0x400b8000 0x1000>, <0x400b9000 0x1000>;
                                interrupts = <44 IRQ_TYPE_LEVEL_HIGH>;
                                clock-names = "ftm-evt", "ftm-src",
                                        "ftm-evt-counter-en", "ftm-src-counter-en";