Add prototypes for dma_reset(), dma_setup(), dma_isactive(), dma_isintr() and
dma_intr().
This commit is contained in:
parent
dbc5effbc8
commit
216b4f1c81
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: iomd_dma.h,v 1.1 2001/10/05 22:27:40 reinoud Exp $ */
|
||||
/* $NetBSD: iomd_dma.h,v 1.2 2002/02/18 11:41:18 bjh21 Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 Scott Stevens
|
||||
|
@ -72,4 +72,9 @@ struct dma_ctrl {
|
|||
|
||||
/* Prototypes */
|
||||
struct dma_ctrl *dma_init __P((int, int, int, int));
|
||||
void dma_go __P((struct dma_ctrl *));
|
||||
void dma_go __P((struct dma_ctrl *));
|
||||
int dma_reset __P((struct dma_ctrl *));
|
||||
int dma_setup __P((struct dma_ctrl *, u_char *, int, int));
|
||||
int dma_isactive __P((struct dma_ctrl *));
|
||||
int dma_isintr __P((struct dma_ctrl *));
|
||||
int dma_intr __P((void *));
|
||||
|
|
Loading…
Reference in New Issue