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

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

Merge "qcacmn: Fix compilation error when DP_MEM_PRE_ALLOC is enabled"

parents e3bb9993 2d291e75
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;
}