Message ID | 20240123222536.875797-1-afd@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [01/11] arm64: dts: ti: k3-am642-evm: Do not split single items | expand |
Hi Andrew Davis, On Tue, 23 Jan 2024 16:25:26 -0600, Andrew Davis wrote: > Each "mboxes" item is composed of two cells. It seems these got split > as they appeared to be two items in an array, but are actually a single > two-cell item. Rejoin these cells. > > I have applied the following to branch ti-k3-dts-next on [1]. Thank you! [01/11] arm64: dts: ti: k3-am642-evm: Do not split single items commit: ba076778dd70f0011aeb2c9847abce937b52c3f6 [02/11] arm64: dts: ti: k3-am642-sk: Do not split single items commit: 3c25149bb61e483b4cf04473768a3a24f57c04fc [03/11] arm64: dts: ti: iot2050: Do not split single items commit: 966459a6994bf7b16a330635b2c2ff9f00437b31 [04/11] arm64: dts: ti: k3-am654-base-board: Do not split single items commit: 6d1ffc18d68f82f82899f2f2d9aca65657828a96 [05/11] arm64: dts: ti: k3-am68-sk-som: Do not split single items commit: 48159cb78e3c540b592031e1db5a6c9eed853621 [06/11] arm64: dts: ti: k3-am69-sk: Do not split single items commit: 2b8e6fac6bb254f70dfcefce01deada89251ae99 [07/11] arm64: dts: ti: k3-j7200-som-p0: Do not split single items commit: ff61b8cbafdcc9a0be0a45758769a54b3d9f2042 [08/11] arm64: dts: ti: k3-j721e-beagleboneai64: Do not split single items commit: 3ff119bb1cb1e3a81bf620125a3bd74821464804 [09/11] arm64: dts: ti: k3-j721e-sk: Do not split single items commit: 90ca6810778865ae7b3ac33229f72f542dc7830d [10/11] arm64: dts: ti: k3-j721e-som-p0: Do not split single items commit: 9fedf76ac33b2a169eaa64d235f5b433c575ebb3 [11/11] arm64: dts: ti: k3-j721s2-som-p0: Do not split single items commit: b1898456a4307097c47a340f4a9327a125f75a43 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent up the chain during the next merge window (or sooner if it is a relevant bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. [1] https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git -- Vignesh
diff --git a/arch/arm64/boot/dts/ti/k3-am642-evm.dts b/arch/arm64/boot/dts/ti/k3-am642-evm.dts index 8c5651d2cf5dd..c407f6eca3433 100644 --- a/arch/arm64/boot/dts/ti/k3-am642-evm.dts +++ b/arch/arm64/boot/dts/ti/k3-am642-evm.dts @@ -660,25 +660,25 @@ mbox_m4_0: mbox-m4-0 { }; &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>; };
Each "mboxes" item is composed of two cells. It seems these got split as they appeared to be two items in an array, but are actually a single two-cell item. Rejoin these cells. Signed-off-by: Andrew Davis <afd@ti.com> --- arch/arm64/boot/dts/ti/k3-am642-evm.dts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)