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

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

Merge "msm: ADSPRPC: unmap fd failure to find map"

parents 033e5203 09fc615f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2391,8 +2391,8 @@ static int fastrpc_internal_munmap_fd(struct fastrpc_file *fl,
	if (err)
		goto bail;
	mutex_lock(&fl->fl_map_mutex);
	if (!fastrpc_mmap_find(fl, ud->fd, ud->va, ud->len, 0, 0, &map)) {
		pr_err("mapping not found to unamp %x va %llx %x\n",
	if (fastrpc_mmap_find(fl, ud->fd, ud->va, ud->len, 0, 0, &map)) {
		pr_err("adsprpc: mapping not found to unmap %d va %llx %x\n",
			ud->fd, (unsigned long long)ud->va,
			(unsigned int)ud->len);
		err = -1;