mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH V2 00/14] arm64: dts: ti: Fix up references to phandles
@ 2023-06-06 18:22 Nishanth Menon
  2023-06-06 18:22 ` [PATCH V2 01/14] arm64: dts: ti: k3-j721e-sk: Fixup reference to phandles array Nishanth Menon
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Nishanth Menon @ 2023-06-06 18:22 UTC (permalink / raw)
  To: Conor Dooley, Krzysztof Kozlowski, Rob Herring
  Cc: linux-kernel, devicetree, linux-arm-kernel, Tero Kristo,
	Vignesh Raghavendra, Udit Kumar, Nishanth Menon

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.

This set was caught by using: git grep '\s&' arch/arm64/boot/dts/ti/
and manually going through the list.

Changes since V1:
* Few formatting changes included to keep consistent
* Picked a Reviewed-by
* ai64 gets a few fixes as part of the cleanup (patches #3, #4)
* Picked up Reviewed-by from Jan.

V1: https://lore.kernel.org/all/20230601152636.858553-1-nm@ti.com/

Nishanth Menon (14):
  arm64: dts: ti: k3-j721e-sk: Fixup reference to phandles array
  arm64: dts: ti: k3-j721e-som-p0/common-proc-board: Fixup reference to
    phandles array
  arm64: dts: ti: k3-j721e-beagleboneai64: Move camera gpio pinctrl to
    gpio node
  arm64: dts: ti: k3-j721e-beagleboneai64: Move eeprom WP gpio pinctrl
    to eeprom node
  arm64: dts: ti: k3-j721e-beagleboneai64: Fixup reference to phandles
    array
  arm64: dts: ti: k3-am642-phyboard-electra-rdk: Fixup reference to
    phandles array
  arm64: dts: ti: k3-j7200-som/common-proc-board: Fixup reference to
    phandles array
  arm64: dts: ti: k3-j721s2-common-proc-board: Fixup reference to
    phandles array
  arm64: dts: ti: k3-am625-sk: Fixup reference to phandles array
  arm64: dts: ti: k3-am64-evm: Fixup reference to phandles array
  arm64: dts: ti: k3-am64-sk: Fixup reference to phandles array
  arm64: dts: ti: k3-am65-iot*: Fixup reference to phandles array
  arm64: dts: ti: k3-am654-base-board: Fixup reference to phandles array
  arm64: dts: ti: k3-am68-sk-base-board: Fixup reference to phandles
    array

 arch/arm64/boot/dts/ti/k3-am625-sk.dts        |  3 +-
 arch/arm64/boot/dts/ti/k3-am642-evm.dts       | 11 +++---
 .../dts/ti/k3-am642-phyboard-electra-rdk.dts  |  2 +-
 arch/arm64/boot/dts/ti/k3-am642-sk.dts        | 11 +++---
 .../boot/dts/ti/k3-am65-iot2050-common.dtsi   | 17 +++++----
 .../arm64/boot/dts/ti/k3-am654-base-board.dts |  4 +--
 .../dts/ti/k3-am6548-iot2050-advanced-m2.dts  | 18 +++++-----
 .../boot/dts/ti/k3-am68-sk-base-board.dts     |  2 +-
 .../dts/ti/k3-j7200-common-proc-board.dts     |  2 +-
 arch/arm64/boot/dts/ti/k3-j7200-som-p0.dtsi   |  8 ++---
 .../boot/dts/ti/k3-j721e-beagleboneai64.dts   | 36 +++++++++++--------
 .../dts/ti/k3-j721e-common-proc-board.dts     |  4 +--
 arch/arm64/boot/dts/ti/k3-j721e-sk.dts        | 20 +++++------
 arch/arm64/boot/dts/ti/k3-j721e-som-p0.dtsi   | 18 +++++-----
 .../dts/ti/k3-j721s2-common-proc-board.dts    |  2 +-
 15 files changed, 80 insertions(+), 78 deletions(-)

-- 
2.40.0


^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2023-06-15 13:27 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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 ` [PATCH V2 10/14] arm64: dts: ti: k3-am64-evm: " Nishanth Menon
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

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®