From: Sui Jingfeng Date: Fri, 15 Nov 2024 12:32:45 +0000 (+0800) Subject: drm/etnaviv: Fix the debug log of the etnaviv_iommu_map() X-Git-Tag: v6.14-rc1~174^2~7^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0078a6f4843647d4792433eb8f0f505cd4c2b18b;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Lucas Stach --- diff --git a/drivers/gpu/drm/etnaviv/etnaviv_mmu.c b/drivers/gpu/drm/etnaviv/etnaviv_mmu.c index c786df840a18f..ff90bf85c156b 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)