x86: add free_coherent dma_ops callback to NOMMU driver
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
committed by
Ingo Molnar
parent
c5e835f964
commit
a3a76532e0
@@ -126,8 +126,15 @@ again:
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void nommu_free_coherent(struct device *dev, size_t size, void *vaddr,
|
||||||
|
dma_addr_t dma_addr)
|
||||||
|
{
|
||||||
|
free_pages((unsigned long)vaddr, get_order(size));
|
||||||
|
}
|
||||||
|
|
||||||
struct dma_mapping_ops nommu_dma_ops = {
|
struct dma_mapping_ops nommu_dma_ops = {
|
||||||
.alloc_coherent = nommu_alloc_coherent,
|
.alloc_coherent = nommu_alloc_coherent,
|
||||||
|
.free_coherent = nommu_free_coherent,
|
||||||
.map_single = nommu_map_single,
|
.map_single = nommu_map_single,
|
||||||
.map_sg = nommu_map_sg,
|
.map_sg = nommu_map_sg,
|
||||||
.is_phys = 1,
|
.is_phys = 1,
|
||||||
|
Reference in New Issue
Block a user