Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4c7f90f6 authored by Vishwanath Raju K's avatar Vishwanath Raju K
Browse files

ARM: dts: msm: Fix address and size width for common cma node for sdx20



"reserved-mem" tuple is set to 1 for "address-cells" and "size-cells".
Fix the CMA region attributes as per the that.

Change-Id: I6db1f50644150dbf92e4c9721334f3a627aeb922
Signed-off-by: default avatarVishwanath Raju K <vishk@codeaurora.org>
parent 7ed47c09
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -42,10 +42,10 @@
&reserved_mem {
	linux,cma {
		compatible = "shared-dma-pool";
		alloc-ranges = <0 0x00000000 0 0x90000000>;
		alloc-ranges = <0 0x90000000>;
		reusable;
		alignment = <0 0x400000>;
		size = <0 0xc00000>;
		alignment = <0x400000>;
		size = <0xc00000>;
		linux,cma-default;
	};
};