diff --git a/drivers/video/rockchip/mpp/mpp_iommu.c b/drivers/video/rockchip/mpp/mpp_iommu.c index 21128cd2a822..4f50641e34f5 100644 --- a/drivers/video/rockchip/mpp/mpp_iommu.c +++ b/drivers/video/rockchip/mpp/mpp_iommu.c @@ -486,8 +486,8 @@ int mpp_iommu_flush_tlb(struct mpp_iommu_info *info) { struct iommu_domain *domain = info->domain; - if (domain && domain->ops && domain->ops->flush_iotlb_all) - domain->ops->flush_iotlb_all(domain); + if (domain && domain->ops) + iommu_flush_tlb_all(domain); return 0; }