Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 139954
b: refs/heads/master
c: bf5fe9e
h: refs/heads/master
v: v3
  • Loading branch information
Greg Ungerer committed Mar 24, 2009
1 parent ea735c6 commit 544c617
Show file tree
Hide file tree
Showing 2 changed files with 8 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: dffc9efc562b8a2180e86df9f733cb113ba94b33
refs/heads/master: bf5fe9ed73c2e696d3256ff18f926b103097abd2
8 changes: 7 additions & 1 deletion trunk/arch/m68knommu/kernel/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
#include <linux/mm.h>
#include <linux/string.h>
#include <linux/device.h>
#include <linux/dma-mapping.h>
#include <asm/io.h>

void *dma_alloc_coherent(struct device *dev, size_t size,
dma_addr_t *dma_handle, int gfp)
dma_addr_t *dma_handle, gfp_t gfp)
{
void *ret;
/* ignore region specifiers */
Expand All @@ -34,3 +35,8 @@ void dma_free_coherent(struct device *dev, size_t size,
{
free_pages((unsigned long)vaddr, get_order(size));
}

void dma_sync_single_for_cpu(struct device *dev, dma_addr_t handle, size_t size, enum dma_data_direction dir)
{
}

0 comments on commit 544c617

Please sign in to comment.