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

Commit 2d291e75 authored by Yeshwanth Sriram Guntuka's avatar Yeshwanth Sriram Guntuka Committed by Gerrit - the friendly Code Review server
Browse files

qcacmn: Fix compilation error when DP_MEM_PRE_ALLOC is enabled

Fix compliation error when DP pre-alloc is enabled.

Change-Id: I0814a9b882aa753ece7533e467f806de7152c87a
CRs-Fixed: 2833688
parent 7fc80fba
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1519,7 +1519,7 @@ void *hif_mem_alloc_consistent_unaligned(struct hif_softc *scn,
end:
	dp_info("%s va_unaligned %pK pa_unaligned %pK size %d ring_type %d",
		*is_mem_prealloc ? "pre-alloc" : "dynamic-alloc", vaddr,
		(void *)*paddr, size, ring_type);
		(void *)*paddr, (int)size, ring_type);

	return vaddr;
}