diff options
author | Will Deacon <will@kernel.org> | 2019-07-02 17:44:50 +0200 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2019-07-29 18:22:58 +0200 |
commit | e953f7f2fa78d1c7fd064171f88457c6b1e21af9 (patch) | |
tree | b35d7667967cc2988207ace4d920ff5bc55c97b6 /drivers/iommu/mtk_iommu.c | |
parent | iommu/io-pgtable: Replace ->tlb_add_flush() with ->tlb_add_page() (diff) | |
download | linux-e953f7f2fa78d1c7fd064171f88457c6b1e21af9.tar.xz linux-e953f7f2fa78d1c7fd064171f88457c6b1e21af9.zip |
iommu/io-pgtable: Remove unused ->tlb_sync() callback
The ->tlb_sync() callback is no longer used, so it can be removed.
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'drivers/iommu/mtk_iommu.c')
-rw-r--r-- | drivers/iommu/mtk_iommu.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/iommu/mtk_iommu.c b/drivers/iommu/mtk_iommu.c index a0b4b4dc4b90..3785750bdb44 100644 --- a/drivers/iommu/mtk_iommu.c +++ b/drivers/iommu/mtk_iommu.c @@ -213,7 +213,6 @@ static const struct iommu_flush_ops mtk_iommu_flush_ops = { .tlb_flush_walk = mtk_iommu_tlb_flush_walk, .tlb_flush_leaf = mtk_iommu_tlb_flush_leaf, .tlb_add_page = mtk_iommu_tlb_flush_page_nosync, - .tlb_sync = mtk_iommu_tlb_sync, }; static irqreturn_t mtk_iommu_isr(int irq, void *dev_id) |