xref: /original-bsd/sys/vax/uba/pdma.h (revision 6e73d10f)
1 /*-
2  * Copyright (c) 1982, 1986 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)pdma.h	7.2 (Berkeley) 05/09/91
8  */
9 
10 struct pdma {
11 	struct	dzdevice *p_addr;
12 	char	*p_mem;
13 	char	*p_end;
14 	int	p_arg;
15 	int	(*p_fcn)();
16 };
17