diff options
| author | Takashi Iwai <tiwai@suse.de> | 2012-05-21 12:45:18 +0200 | 
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2012-05-21 12:45:18 +0200 | 
| commit | 775b2449bdba7c97dda9f274c92bf7a83dac4142 (patch) | |
| tree | b4bee45c13762ea93642b1e38c62de454e51cf5d /drivers/iommu/amd_iommu.c | |
| parent | 21363cf0ca5c9c62e34e37422fb1d13d70d3de3c (diff) | |
| parent | 5fb86e5d4a951ddb0474cdfd809380c8e2a8d101 (diff) | |
| download | olio-linux-3.10-775b2449bdba7c97dda9f274c92bf7a83dac4142.tar.xz olio-linux-3.10-775b2449bdba7c97dda9f274c92bf7a83dac4142.zip  | |
Merge branch 'topic/asoc' into for-linus
Diffstat (limited to 'drivers/iommu/amd_iommu.c')
| -rw-r--r-- | drivers/iommu/amd_iommu.c | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c index ae2ec929e52..a5bee8e2dfc 100644 --- a/drivers/iommu/amd_iommu.c +++ b/drivers/iommu/amd_iommu.c @@ -2707,7 +2707,8 @@ static void unmap_sg(struct device *dev, struct scatterlist *sglist,   * The exported alloc_coherent function for dma_ops.   */  static void *alloc_coherent(struct device *dev, size_t size, -			    dma_addr_t *dma_addr, gfp_t flag) +			    dma_addr_t *dma_addr, gfp_t flag, +			    struct dma_attrs *attrs)  {  	unsigned long flags;  	void *virt_addr; @@ -2765,7 +2766,8 @@ out_free:   * The exported free_coherent function for dma_ops.   */  static void free_coherent(struct device *dev, size_t size, -			  void *virt_addr, dma_addr_t dma_addr) +			  void *virt_addr, dma_addr_t dma_addr, +			  struct dma_attrs *attrs)  {  	unsigned long flags;  	struct protection_domain *domain; @@ -2846,8 +2848,8 @@ static void __init prealloc_protection_domains(void)  }  static struct dma_map_ops amd_iommu_dma_ops = { -	.alloc_coherent = alloc_coherent, -	.free_coherent = free_coherent, +	.alloc = alloc_coherent, +	.free = free_coherent,  	.map_page = map_page,  	.unmap_page = unmap_page,  	.map_sg = map_sg,  |