Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 138875
b: refs/heads/master
c: 917f69b
h: refs/heads/master
i:
  138873: 73f5daf
  138871: a83a7e7
v: v3
  • Loading branch information
FUJITA Tomonori authored and Ingo Molnar committed Jan 6, 2009
1 parent 50cc498 commit 21917c0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0e9cbb9ba874f9466faf82931465f00ebe4bb18c
refs/heads/master: 917f69b8b74e0b3283fcd1f2885949847d787d24
17 changes: 16 additions & 1 deletion trunk/arch/ia64/hp/common/hwsw_iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
*/

#include <linux/device.h>
#include <linux/dma-mapping.h>
#include <linux/swiotlb.h>

#include <asm/machvec.h>

/* swiotlb declarations & definitions: */
Expand Down Expand Up @@ -193,3 +193,18 @@ EXPORT_SYMBOL(hwsw_sync_single_for_cpu);
EXPORT_SYMBOL(hwsw_sync_single_for_device);
EXPORT_SYMBOL(hwsw_sync_sg_for_cpu);
EXPORT_SYMBOL(hwsw_sync_sg_for_device);

struct dma_mapping_ops hwsw_dma_ops = {
.alloc_coherent = hwsw_alloc_coherent,
.free_coherent = hwsw_free_coherent,
.map_single_attrs = hwsw_map_single_attrs,
.unmap_single_attrs = hwsw_unmap_single_attrs,
.map_sg_attrs = hwsw_map_sg_attrs,
.unmap_sg_attrs = hwsw_unmap_sg_attrs,
.sync_single_for_cpu = hwsw_sync_single_for_cpu,
.sync_sg_for_cpu = hwsw_sync_sg_for_cpu,
.sync_single_for_device = hwsw_sync_single_for_device,
.sync_sg_for_device = hwsw_sync_sg_for_device,
.dma_supported_op = hwsw_dma_supported,
.mapping_error = hwsw_dma_mapping_error,
};

0 comments on commit 21917c0

Please sign in to comment.