aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/pasemi_dma.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-powerpc/pasemi_dma.h')
-rw-r--r--include/asm-powerpc/pasemi_dma.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asm-powerpc/pasemi_dma.h b/include/asm-powerpc/pasemi_dma.h
index 35577b6dec41..ffd413d7dfb0 100644
--- a/include/asm-powerpc/pasemi_dma.h
+++ b/include/asm-powerpc/pasemi_dma.h
@@ -466,6 +466,12 @@ extern void *pasemi_dma_alloc_buf(struct pasemi_dmachan *chan, int size,
466extern void pasemi_dma_free_buf(struct pasemi_dmachan *chan, int size, 466extern void pasemi_dma_free_buf(struct pasemi_dmachan *chan, int size,
467 dma_addr_t *handle); 467 dma_addr_t *handle);
468 468
469/* Routines to allocate flags (events) for channel syncronization */
470extern int pasemi_dma_alloc_flag(void);
471extern void pasemi_dma_free_flag(int flag);
472extern void pasemi_dma_set_flag(int flag);
473extern void pasemi_dma_clear_flag(int flag);
474
469/* Initialize the library, must be called before any other functions */ 475/* Initialize the library, must be called before any other functions */
470extern int pasemi_dma_init(void); 476extern int pasemi_dma_init(void);
471 477