From 4fc32c22c0588a4972aa9cf82101cc6f7df71016 Mon Sep 17 00:00:00 2001 From: Oleksandr Tyshchenko Date: Mon, 30 Sep 2019 13:34:31 +0300 Subject: [PATCH] iommu/arm: Remove arch_iommu_populate_page_table() completely The Arm realization should have been removed in the following commit as redundant: f89f555 remove late (on-demand) construction of IOMMU page tables So, remove unused function completely. Fixes: f89f555 ('remove late (on-demand) construction of IOMMU page tables') Signed-off-by: Oleksandr Tyshchenko Reviewed-by: Paul Durrant Release-acked-by: Juergen Gross --- xen/drivers/passthrough/arm/iommu.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/xen/drivers/passthrough/arm/iommu.c b/xen/drivers/passthrough/arm/iommu.c index 76e11528e6..db3b07a571 100644 --- a/xen/drivers/passthrough/arm/iommu.c +++ b/xen/drivers/passthrough/arm/iommu.c @@ -132,12 +132,6 @@ void arch_iommu_domain_destroy(struct domain *d) { } -int arch_iommu_populate_page_table(struct domain *d) -{ - /* The IOMMU shares the p2m with the CPU */ - return -ENOSYS; -} - void __hwdom_init arch_iommu_hwdom_init(struct domain *d) { } -- 2.30.2