Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 48307
b: refs/heads/master
c: b7de8e7
h: refs/heads/master
i:
  48305: 9dbe1b4
  48303: 28115d9
v: v3
  • Loading branch information
Roland Dreier authored and Linus Torvalds committed Feb 14, 2007
1 parent d3e36c2 commit a780e9c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 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: ac98695d6c1508b724f246f38ce57fb4e3cec356
refs/heads/master: b7de8e7e3c7b79a72c20c7fd58bd65df3d146b13
15 changes: 13 additions & 2 deletions trunk/include/asm-ia64/dma-mapping.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,20 @@
#include <asm/machvec.h>

#define dma_alloc_coherent platform_dma_alloc_coherent
#define dma_alloc_noncoherent platform_dma_alloc_coherent /* coherent mem. is cheap */
/* coherent mem. is cheap */
static inline void *
dma_alloc_noncoherent(struct device *dev, size_t size, dma_addr_t *dma_handle,
gfp_t flag)
{
return dma_alloc_coherent(dev, size, dma_handle, flag);
}
#define dma_free_coherent platform_dma_free_coherent
#define dma_free_noncoherent platform_dma_free_coherent
static inline void
dma_free_noncoherent(struct device *dev, size_t size, void *cpu_addr,
dma_addr_t dma_handle)
{
dma_free_coherent(dev, size, cpu_addr, dma_handle);
}
#define dma_map_single platform_dma_map_single
#define dma_map_sg platform_dma_map_sg
#define dma_unmap_single platform_dma_unmap_single
Expand Down

0 comments on commit a780e9c

Please sign in to comment.