mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Nishanth Menon <nm@ti.com>
To: Conor Dooley <conor+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Rob Herring <robh+dt@kernel.org>
Cc: <linux-kernel@vger.kernel.org>, <devicetree@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	Tero Kristo <kristo@kernel.org>,
	Vignesh Raghavendra <vigneshr@ti.com>,
	Udit Kumar <u-kumar1@ti.com>, Nishanth Menon <nm@ti.com>
Subject: [PATCH V2 10/14] arm64: dts: ti: k3-am64-evm: Fixup reference to phandles array
Date: Tue, 6 Jun 2023 13:22:16 -0500	[thread overview]
Message-ID: <20230606182220.3661956-11-nm@ti.com> (raw)
In-Reply-To: <20230606182220.3661956-1-nm@ti.com>

When referring to array of phandles, using <> to separate the array
entries is better notation as it makes potential errors with phandle and
cell arguments easier to catch. Fix the outliers to be consistent with
the rest of the usage.

Signed-off-by: Nishanth Menon <nm@ti.com>
---
Changes since v1:
* formatting change
V1: https://lore.kernel.org/r/20230601152636.858553-9-nm@ti.com
 arch/arm64/boot/dts/ti/k3-am642-evm.dts | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/arch/arm64/boot/dts/ti/k3-am642-evm.dts b/arch/arm64/boot/dts/ti/k3-am642-evm.dts
index 39feea78a084..150f23915bf4 100644
--- a/arch/arm64/boot/dts/ti/k3-am642-evm.dts
+++ b/arch/arm64/boot/dts/ti/k3-am642-evm.dts
@@ -425,8 +425,7 @@ &usb0 {
 
 &cpsw3g {
 	pinctrl-names = "default";
-	pinctrl-0 = <&rgmii1_pins_default
-		     &rgmii2_pins_default>;
+	pinctrl-0 = <&rgmii1_pins_default>, <&rgmii2_pins_default>;
 };
 
 &cpsw_port1 {
@@ -518,25 +517,25 @@ &mailbox0_cluster7 {
 };
 
 &main_r5fss0_core0 {
-	mboxes = <&mailbox0_cluster2 &mbox_main_r5fss0_core0>;
+	mboxes = <&mailbox0_cluster2>, <&mbox_main_r5fss0_core0>;
 	memory-region = <&main_r5fss0_core0_dma_memory_region>,
 			<&main_r5fss0_core0_memory_region>;
 };
 
 &main_r5fss0_core1 {
-	mboxes = <&mailbox0_cluster2 &mbox_main_r5fss0_core1>;
+	mboxes = <&mailbox0_cluster2>, <&mbox_main_r5fss0_core1>;
 	memory-region = <&main_r5fss0_core1_dma_memory_region>,
 			<&main_r5fss0_core1_memory_region>;
 };
 
 &main_r5fss1_core0 {
-	mboxes = <&mailbox0_cluster4 &mbox_main_r5fss1_core0>;
+	mboxes = <&mailbox0_cluster4>, <&mbox_main_r5fss1_core0>;
 	memory-region = <&main_r5fss1_core0_dma_memory_region>,
 			<&main_r5fss1_core0_memory_region>;
 };
 
 &main_r5fss1_core1 {
-	mboxes = <&mailbox0_cluster4 &mbox_main_r5fss1_core1>;
+	mboxes = <&mailbox0_cluster4>, <&mbox_main_r5fss1_core1>;
 	memory-region = <&main_r5fss1_core1_dma_memory_region>,
 			<&main_r5fss1_core1_memory_region>;
 };
-- 
2.40.0


  parent reply	other threads:[~2023-06-06 18:23 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-06 18:22 [PATCH V2 00/14] arm64: dts: ti: Fix up references to phandles Nishanth Menon
2023-06-06 18:22 ` [PATCH V2 01/14] arm64: dts: ti: k3-j721e-sk: Fixup reference to phandles array Nishanth Menon
2023-06-06 18:22 ` [PATCH V2 02/14] arm64: dts: ti: k3-j721e-som-p0/common-proc-board: " Nishanth Menon
2023-06-06 18:22 ` [PATCH V2 03/14] arm64: dts: ti: k3-j721e-beagleboneai64: Move camera gpio pinctrl to gpio node Nishanth Menon
2023-06-06 18:22 ` [PATCH V2 04/14] arm64: dts: ti: k3-j721e-beagleboneai64: Move eeprom WP gpio pinctrl to eeprom node Nishanth Menon
2023-06-06 18:22 ` [PATCH V2 05/14] arm64: dts: ti: k3-j721e-beagleboneai64: Fixup reference to phandles array Nishanth Menon
2023-06-06 18:22 ` [PATCH V2 06/14] arm64: dts: ti: k3-am642-phyboard-electra-rdk: " Nishanth Menon
2023-06-06 18:22 ` [PATCH V2 07/14] arm64: dts: ti: k3-j7200-som/common-proc-board: " Nishanth Menon
2023-06-06 18:22 ` [PATCH V2 08/14] arm64: dts: ti: k3-j721s2-common-proc-board: " Nishanth Menon
2023-06-06 18:22 ` [PATCH V2 09/14] arm64: dts: ti: k3-am625-sk: " Nishanth Menon
2023-06-06 18:22 ` Nishanth Menon [this message]
2023-06-06 18:22 ` [PATCH V2 11/14] arm64: dts: ti: k3-am64-sk: " Nishanth Menon
2023-06-06 18:22 ` [PATCH V2 12/14] arm64: dts: ti: k3-am65-iot*: " Nishanth Menon
2023-06-06 18:22 ` [PATCH V2 13/14] arm64: dts: ti: k3-am654-base-board: " Nishanth Menon
2023-06-06 18:22 ` [PATCH V2 14/14] arm64: dts: ti: k3-am68-sk-base-board: " Nishanth Menon
2023-06-07  7:48 ` [PATCH V2 00/14] arm64: dts: ti: Fix up references to phandles Kumar, Udit
2023-06-15 13:27 ` Vignesh Raghavendra

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230606182220.3661956-11-nm@ti.com \
    --to=nm@ti.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=kristo@kernel.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=u-kumar1@ti.com \
    --cc=vigneshr@ti.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®