]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - rpmsg/rpmsg.git/commitdiff
ARM: dts: dra72-evm-revc: Fix rproc reserved-memory labels and node names
authorSuman Anna <s-anna@ti.com>
Mon, 16 Sep 2019 23:36:49 +0000 (18:36 -0500)
committerSuman Anna <s-anna@ti.com>
Tue, 17 Sep 2019 16:08:23 +0000 (11:08 -0500)
The commit 896cb04007c3 ("ARM: dts: dra72-evm-revc: Add CMA pools and
enable IPUs & DSP1 rprocs") erroneously used the old CMA terminology in
the DSP1 & IPU rproc reserved memory node names and labels. Fix these
and align with the node names and labels used in all the other TI
DRA7xx/AM57xx board dts files.

Fixes: 896cb04007c3 ("ARM: dts: dra72-evm-revc: Add CMA pools and enable IPUs & DSP1 rprocs")
Signed-off-by: Suman Anna <s-anna@ti.com>
arch/arm/boot/dts/dra72-evm-revc.dts

index 08c75a7e3e8cf75a61efae16eb81c6b3ab646e30..b68c5935471e54efdaf05423a2468ffa17c58efe 100644 (file)
                #size-cells = <2>;
                ranges;
 
-               ipu2_cma_pool: ipu2_cma@95800000 {
+               ipu2_memory_region: ipu2-memory@95800000 {
                        compatible = "shared-dma-pool";
                        reg = <0x0 0x95800000 0x0 0x3800000>;
                        reusable;
                        status = "okay";
                };
 
-               dsp1_cma_pool: dsp1_cma@99000000 {
+               dsp1_memory_region: dsp1-memory@99000000 {
                        compatible = "shared-dma-pool";
                        reg = <0x0 0x99000000 0x0 0x4000000>;
                        reusable;
                        status = "okay";
                };
 
-               ipu1_cma_pool: ipu1_cma@9d000000 {
+               ipu1_memory_region: ipu1-memory@9d000000 {
                        compatible = "shared-dma-pool";
                        reg = <0x0 0x9d000000 0x0 0x2000000>;
                        reusable;
 
 &ipu2 {
        status = "okay";
-       memory-region = <&ipu2_cma_pool>;
+       memory-region = <&ipu2_memory_region>;
 };
 
 &ipu1 {
        status = "okay";
-       memory-region = <&ipu1_cma_pool>;
+       memory-region = <&ipu1_memory_region>;
 };
 
 &dsp1 {
        status = "okay";
-       memory-region = <&dsp1_cma_pool>;
+       memory-region = <&dsp1_memory_region>;
 };