aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/intel-iommu.c
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2010-01-20 08:52:23 -0500
committerJoerg Roedel <joerg.roedel@amd.com>2010-03-07 12:01:11 -0500
commit4abc14a733f9002c05623db755aaafdd27fa7a91 (patch)
tree0fd549edf79ba6df91ab6c601521270b937aaebb /drivers/pci/intel-iommu.c
parentd2be1651b736002e0c76d7095d6c0ba77b4a897c (diff)
iommu-api: Rename ->{un}map function pointers to ->{un}map_range
The new function pointer names match better with the top-level functions of the iommu-api which are using them. Main intention of this change is to make the ->{un}map pointer names free for two new mapping functions. Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to 'drivers/pci/intel-iommu.c')
-rw-r--r--drivers/pci/intel-iommu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/intel-iommu.c b/drivers/pci/intel-iommu.c
index 417312528ddf..a714e3db13c1 100644
--- a/drivers/pci/intel-iommu.c
+++ b/drivers/pci/intel-iommu.c
@@ -3714,8 +3714,8 @@ static struct iommu_ops intel_iommu_ops = {
3714 .domain_destroy = intel_iommu_domain_destroy, 3714 .domain_destroy = intel_iommu_domain_destroy,
3715 .attach_dev = intel_iommu_attach_device, 3715 .attach_dev = intel_iommu_attach_device,
3716 .detach_dev = intel_iommu_detach_device, 3716 .detach_dev = intel_iommu_detach_device,
3717 .map = intel_iommu_map_range, 3717 .map_range = intel_iommu_map_range,
3718 .unmap = intel_iommu_unmap_range, 3718 .unmap_range = intel_iommu_unmap_range,
3719 .iova_to_phys = intel_iommu_iova_to_phys, 3719 .iova_to_phys = intel_iommu_iova_to_phys,
3720 .domain_has_cap = intel_iommu_domain_has_cap, 3720 .domain_has_cap = intel_iommu_domain_has_cap,
3721}; 3721};