aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorSui Jingfeng <sui.jingfeng@linux.dev>2024-11-15 20:32:45 +0800
committerLucas Stach <l.stach@pengutronix.de>2024-12-03 18:30:32 +0100
commit0078a6f4843647d4792433eb8f0f505cd4c2b18b (patch)
treefa94a0ef7438740d3adb23a031942e2bdf475519
parentdrm/etnaviv: Drop the offset in page manipulation (diff)
downloadwireguard-linux-0078a6f4843647d4792433eb8f0f505cd4c2b18b.tar.xz
wireguard-linux-0078a6f4843647d4792433eb8f0f505cd4c2b18b.zip
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: Sui Jingfeng <sui.jingfeng@linux.dev> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
-rw-r--r--drivers/gpu/drm/etnaviv/etnaviv_mmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/etnaviv/etnaviv_mmu.c b/drivers/gpu/drm/etnaviv/etnaviv_mmu.c
index c786df840a18..ff90bf85c156 100644
--- a/drivers/gpu/drm/etnaviv/etnaviv_mmu.c
+++ b/drivers/gpu/drm/etnaviv/etnaviv_mmu.c
@@ -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)