From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 726903F9D2; Tue, 12 Aug 2025 18:09:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755022158; cv=none; b=k8z0biE415qmwhWMIMtmGui2kfVG/4YR0ych/+/v2UTiXRbxEL7K1/X1vvkfjUPNp0ha3rpCmG+C6eky9VTpma90VtwbZTZyCBl9js+C6sTvO/9xI3tCyvh14SyxhMCybyiXkHHg3V4RkfQdL2qJyjthjoQp3KJ2+IWD5QxwP/M= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755022158; c=relaxed/simple; bh=0HwPl6U5NrQWj9vPQ5STEDETJ+hjeTC/xCdPVJ7Uleg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=fErLuTShz6+kyWeIhhne0AUdIL0CIL4eCTxxiCHrf8uaXOvKfTq3FIUZvUljrOwt9br59iAX/ptOSRT584ImZYlWLwJRjQ8GigOpWUnAIn+ZdzK7tmxlAn7xx3dS3Ts6jxEfAyq2tNXJM4FFHTvC2i72ftzR788W2QO03Cf4rt8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=mWkFZaSP; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="mWkFZaSP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D6E2BC4CEF0; Tue, 12 Aug 2025 18:09:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1755022158; bh=0HwPl6U5NrQWj9vPQ5STEDETJ+hjeTC/xCdPVJ7Uleg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mWkFZaSPjkxEPfKMWSqPWvrmnGF2z94dWtQVstXFbG3slgUgaO1WJU+TeAzY9ZbT6 FtfwH6vbQ6Nf1zkXzITtHg86pSw2gZ9qaUGFb0ayEm2SWQjx4fSKCWuC302a8c6NVz Enu478JbWX3Qljci2tPplwzrT16kMPsHVXLXRm/M= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Krzysztof Kozlowski , Shawn Guo , Sasha Levin Subject: [PATCH 6.12 029/369] ARM: dts: vfxxx: Correctly use two tuples for timer address Date: Tue, 12 Aug 2025 19:25:26 +0200 Message-ID: <20250812173015.833369562@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250812173014.736537091@linuxfoundation.org> References: <20250812173014.736537091@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Krzysztof Kozlowski [ 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 Signed-off-by: Shawn Guo Signed-off-by: Sasha Levin --- arch/arm/boot/dts/nxp/vf/vfxxx.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/nxp/vf/vfxxx.dtsi b/arch/arm/boot/dts/nxp/vf/vfxxx.dtsi index acccf9a3c898..27422a343f14 100644 --- a/arch/arm/boot/dts/nxp/vf/vfxxx.dtsi +++ b/arch/arm/boot/dts/nxp/vf/vfxxx.dtsi @@ -604,7 +604,7 @@ usbmisc1: usb@400b4800 { 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"; -- 2.39.5