diff options
author | Robin Murphy <robin.murphy@arm.com> | 2019-09-18 18:17:51 +0200 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2019-10-01 13:17:39 +0200 |
commit | 696bcfb709862077e8fd0e484cca952db7f2001a (patch) | |
tree | 83e9d0a8cc17f34ddd312e1a5c483d2d64ea7c34 /drivers/iommu/arm-smmu.h | |
parent | iommu/arm-smmu: Move .tlb_sync method to implementation (diff) | |
download | linux-696bcfb709862077e8fd0e484cca952db7f2001a.tar.xz linux-696bcfb709862077e8fd0e484cca952db7f2001a.zip |
iommu/arm-smmu: Remove arm_smmu_flush_ops
Now it's just an empty wrapper.
Signed-off-by: Robin Murphy <robin.murphy@arm.com>
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'drivers/iommu/arm-smmu.h')
-rw-r--r-- | drivers/iommu/arm-smmu.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/iommu/arm-smmu.h b/drivers/iommu/arm-smmu.h index 5032102f05b7..ba0f05952dd9 100644 --- a/drivers/iommu/arm-smmu.h +++ b/drivers/iommu/arm-smmu.h @@ -304,14 +304,10 @@ enum arm_smmu_domain_stage { ARM_SMMU_DOMAIN_BYPASS, }; -struct arm_smmu_flush_ops { - struct iommu_flush_ops tlb; -}; - struct arm_smmu_domain { struct arm_smmu_device *smmu; struct io_pgtable_ops *pgtbl_ops; - const struct arm_smmu_flush_ops *flush_ops; + const struct iommu_flush_ops *flush_ops; struct arm_smmu_cfg cfg; enum arm_smmu_domain_stage stage; bool non_strict; |