aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel
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 /arch/x86/kernel
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 'arch/x86/kernel')
-rw-r--r--arch/x86/kernel/amd_iommu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/amd_iommu.c b/arch/x86/kernel/amd_iommu.c
index adb0ba02570..59cae7c4df5 100644
--- a/arch/x86/kernel/amd_iommu.c
+++ b/arch/x86/kernel/amd_iommu.c
@@ -2515,8 +2515,8 @@ static struct iommu_ops amd_iommu_ops = {
2515 .domain_destroy = amd_iommu_domain_destroy, 2515 .domain_destroy = amd_iommu_domain_destroy,
2516 .attach_dev = amd_iommu_attach_device, 2516 .attach_dev = amd_iommu_attach_device,
2517 .detach_dev = amd_iommu_detach_device, 2517 .detach_dev = amd_iommu_detach_device,
2518 .map = amd_iommu_map_range, 2518 .map_range = amd_iommu_map_range,
2519 .unmap = amd_iommu_unmap_range, 2519 .unmap_range = amd_iommu_unmap_range,
2520 .iova_to_phys = amd_iommu_iova_to_phys, 2520 .iova_to_phys = amd_iommu_iova_to_phys,
2521 .domain_has_cap = amd_iommu_domain_has_cap, 2521 .domain_has_cap = amd_iommu_domain_has_cap,
2522}; 2522};