summaryrefslogtreecommitdiff
path: root/drivers/iommu
diff options
context:
space:
mode:
authorOhad Ben-Cohen <ohad@wizery.com>2011-11-10 11:32:31 +0200
committerHiroshi DOYU <hdoyu@nvidia.com>2012-01-23 11:11:37 +0200
commite230170e1eb4d28c9eed79c0707365d0f7e1cbc8 (patch)
tree35a0d7f717be9ed675ecef43427ca8d9ab733f7a /drivers/iommu
parent3f63cf0f5c8877b23dd512019c06000311dbd1a1 (diff)
iommu/core: remove the temporary pgsize settings
Now that all IOMMU drivers are exporting their supported pgsizes, we can remove the default pgsize settings in register_iommu(). Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com> Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to 'drivers/iommu')
-rw-r--r--drivers/iommu/iommu.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c
index b278458d5816..84cdd8ac81f1 100644
--- a/drivers/iommu/iommu.c
+++ b/drivers/iommu/iommu.c
@@ -49,16 +49,6 @@ int bus_set_iommu(struct bus_type *bus, struct iommu_ops *ops)
if (bus->iommu_ops != NULL)
return -EBUSY;
- /*
- * Set the default pgsize values, which retain the existing
- * IOMMU API behavior: drivers will be called to map
- * regions that are sized/aligned to order of 4KiB pages.
- *
- * This will be removed once all drivers are migrated.
- */
- if (!ops->pgsize_bitmap)
- ops->pgsize_bitmap = ~0xFFFUL;
-
bus->iommu_ops = ops;
/* Do IOMMU specific setup for this bus-type */