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

Commit 4dc869b1 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "iommu: msm: Fix incorrect address list preparation"

parents cd7bad69 e949dfad
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -640,8 +640,7 @@ static int msm_iommu_sec_ptbl_map_range(struct msm_iommu_drvdata *iommu_drvdata,
			return -EINVAL;
		}
		while (offset < len) {
			pa += chunk_offset;
			pa_list[cnt] = pa;
			pa_list[cnt] = pa + chunk_offset;
			chunk_offset += SZ_1M;
			offset += SZ_1M;
			cnt++;