]> git.ipfire.org Git - thirdparty/kernel/stable.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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 15 Aug 2025 14:38:26 +0000 (16:38 +0200)
[ Upstream commit f3440dcf8b994197c968fbafe047ce27eed226e8 ]

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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/arm/boot/dts/nxp/vf/vfxxx.dtsi

index 597f20be82f1ee044e14bfaf3bd05cff37a8ad39..62e555bf6a71d92ba80c64c1f4fbb7b681156a35 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";