Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 112557
b: refs/heads/master
c: a3a7653
h: refs/heads/master
i:
  112555: aa5fa66
v: v3
  • Loading branch information
Joerg Roedel authored and Ingo Molnar committed Aug 22, 2008
1 parent 8991bee commit 7933bd2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c5e835f9641e9fcb95d1afb24906821e98b2c6a8
refs/heads/master: a3a76532e0caa093c279806d8fe8608232538af0
7 changes: 7 additions & 0 deletions trunk/arch/x86/kernel/pci-nommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,15 @@ nommu_alloc_coherent(struct device *hwdev, size_t size,
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 = {
.alloc_coherent = nommu_alloc_coherent,
.free_coherent = nommu_free_coherent,
.map_single = nommu_map_single,
.map_sg = nommu_map_sg,
.is_phys = 1,
Expand Down

0 comments on commit 7933bd2

Please sign in to comment.