Commit 0078a6f4 authored by Sui Jingfeng's avatar Sui Jingfeng Committed by Lucas Stach
Browse files

drm/etnaviv: Fix the debug log of the etnaviv_iommu_map()



The value of the 'iova' variable is the start GPUVA that is going to be
mapped, its value doesn't changed when the mapping is on going.

Replace it with the 'da' variable, which is incremental and it reflects
the actual address being mapped exactly.

Signed-off-by: default avatarSui Jingfeng <sui.jingfeng@linux.dev>
Signed-off-by: default avatarLucas Stach <l.stach@pengutronix.de>
parent 9aad03e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -86,7 +86,7 @@ static int etnaviv_iommu_map(struct etnaviv_iommu_context *context,
		unsigned int da_len = sg_dma_len(sg);
		unsigned int bytes = min_t(unsigned int, da_len, va_len);

		VERB("map[%d]: %08x %pap(%x)", i, iova, &pa, bytes);
		VERB("map[%d]: %08x %pap(%x)", i, da, &pa, bytes);

		ret = etnaviv_context_map(context, da, pa, bytes, prot);
		if (ret)