diff options
Diffstat (limited to 'arch/ia64/hp/common/hwsw_iommu.c')
-rw-r--r-- | arch/ia64/hp/common/hwsw_iommu.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/arch/ia64/hp/common/hwsw_iommu.c b/arch/ia64/hp/common/hwsw_iommu.c index 2769dbfd03b..a40dcdd22ee 100644 --- a/arch/ia64/hp/common/hwsw_iommu.c +++ b/arch/ia64/hp/common/hwsw_iommu.c | |||
@@ -13,8 +13,8 @@ | |||
13 | */ | 13 | */ |
14 | 14 | ||
15 | #include <linux/device.h> | 15 | #include <linux/device.h> |
16 | #include <linux/dma-mapping.h> | ||
16 | #include <linux/swiotlb.h> | 17 | #include <linux/swiotlb.h> |
17 | |||
18 | #include <asm/machvec.h> | 18 | #include <asm/machvec.h> |
19 | 19 | ||
20 | /* swiotlb declarations & definitions: */ | 20 | /* swiotlb declarations & definitions: */ |
@@ -193,3 +193,18 @@ EXPORT_SYMBOL(hwsw_sync_single_for_cpu); | |||
193 | EXPORT_SYMBOL(hwsw_sync_single_for_device); | 193 | EXPORT_SYMBOL(hwsw_sync_single_for_device); |
194 | EXPORT_SYMBOL(hwsw_sync_sg_for_cpu); | 194 | EXPORT_SYMBOL(hwsw_sync_sg_for_cpu); |
195 | EXPORT_SYMBOL(hwsw_sync_sg_for_device); | 195 | EXPORT_SYMBOL(hwsw_sync_sg_for_device); |
196 | |||
197 | struct dma_mapping_ops hwsw_dma_ops = { | ||
198 | .alloc_coherent = hwsw_alloc_coherent, | ||
199 | .free_coherent = hwsw_free_coherent, | ||
200 | .map_single_attrs = hwsw_map_single_attrs, | ||
201 | .unmap_single_attrs = hwsw_unmap_single_attrs, | ||
202 | .map_sg_attrs = hwsw_map_sg_attrs, | ||
203 | .unmap_sg_attrs = hwsw_unmap_sg_attrs, | ||
204 | .sync_single_for_cpu = hwsw_sync_single_for_cpu, | ||
205 | .sync_sg_for_cpu = hwsw_sync_sg_for_cpu, | ||
206 | .sync_single_for_device = hwsw_sync_single_for_device, | ||
207 | .sync_sg_for_device = hwsw_sync_sg_for_device, | ||
208 | .dma_supported_op = hwsw_dma_supported, | ||
209 | .mapping_error = hwsw_dma_mapping_error, | ||
210 | }; | ||