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

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

Merge "msm: ipa: fix 64 bit errors in printf format strings"

parents 4f1f762f 1d94f773
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -491,7 +491,7 @@ static int ipa_create_uc_smmu_mapping_pa(phys_addr_t pa, size_t len,
			true_len,
			device ? (prot | IOMMU_DEVICE) : prot);
	if (ret) {
		IPAERR("iommu map failed for pa=%pa len=%lu\n", &pa, true_len);
		IPAERR("iommu map failed for pa=%pa len=%zu\n", &pa, true_len);
		return -EINVAL;
	}

@@ -526,7 +526,7 @@ static int ipa_create_uc_smmu_mapping_sgt(struct sg_table *sgt,

		ret = iommu_map(cb->mapping->domain, va, phys, len, prot);
		if (ret) {
			IPAERR("iommu map failed for pa=%pa len=%lu\n",
			IPAERR("iommu map failed for pa=%pa len=%zu\n",
					&phys, len);
			goto bad_mapping;
		}