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

Commit 146fa245 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "soc: qcom: smem: Fix compilation warning"

parents 7909de7b d1e2f95b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -735,7 +735,7 @@ phys_addr_t qcom_smem_virt_to_phys(void *p)
		if (p < region->virt_base)
			continue;
		if (p < region->virt_base + region->size) {
			u64 offset = p - region->virt_base;
			u64 offset = p - (void *)region->virt_base;

			return (phys_addr_t)region->aux_base + offset;
		}