@@ -457,10 +457,6 @@ iommu_alloc_resv_region(phys_addr_t start, size_t length, int prot,
extern int iommu_get_group_resv_regions(struct iommu_group *group,
struct list_head *head);
-extern int iommu_attach_group(struct iommu_domain *domain,
- struct iommu_group *group);
-extern void iommu_detach_group(struct iommu_domain *domain,
- struct iommu_group *group);
extern struct iommu_group *iommu_group_alloc(void);
extern void *iommu_group_get_iommudata(struct iommu_group *group);
extern void iommu_group_set_iommudata(struct iommu_group *group,
@@ -818,17 +814,6 @@ static inline bool iommu_default_passthrough(void)
return true;
}
-static inline int iommu_attach_group(struct iommu_domain *domain,
- struct iommu_group *group)
-{
- return -ENODEV;
-}
-
-static inline void iommu_detach_group(struct iommu_domain *domain,
- struct iommu_group *group)
-{
-}
-
static inline struct iommu_group *iommu_group_alloc(void)
{
return ERR_PTR(-ENODEV);
@@ -2308,18 +2308,6 @@ static int __iommu_attach_group(struct iommu_domain *domain,
return ret;
}
-int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group)
-{
- int ret;
-
- mutex_lock(&group->mutex);
- ret = __iommu_attach_group(domain, group);
- mutex_unlock(&group->mutex);
-
- return ret;
-}
-EXPORT_SYMBOL_GPL(iommu_attach_group);
-
static int iommu_group_do_detach_device(struct device *dev, void *data)
{
struct iommu_domain *domain = data;
@@ -2357,14 +2345,6 @@ static void __iommu_detach_group(struct iommu_domain *domain,
group->domain = group->default_domain;
}
-void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group)
-{
- mutex_lock(&group->mutex);
- __iommu_detach_group(domain, group);
- mutex_unlock(&group->mutex);
-}
-EXPORT_SYMBOL_GPL(iommu_detach_group);
-
phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
{
if (domain->type == IOMMU_DOMAIN_IDENTITY)
The iommu_attach/detach_group() interfaces have no reference in the tree anymore. Remove them to avoid dead code. Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com> --- include/linux/iommu.h | 15 --------------- drivers/iommu/iommu.c | 20 -------------------- 2 files changed, 35 deletions(-)