156819Sralph /*- 2*63206Sbostic * Copyright (c) 1992, 1993 3*63206Sbostic * The Regents of the University of California. All rights reserved. 452130Smckusick * 552130Smckusick * This code is derived from software contributed to Berkeley by 656819Sralph * Ralph Campbell and Rick Macklem. 752130Smckusick * 852130Smckusick * %sccs.include.redist.c% 952130Smckusick * 10*63206Sbostic * @(#)pdma.h 8.1 (Berkeley) 06/10/93 1152130Smckusick */ 1252130Smckusick 1352130Smckusick struct pdma { 1456819Sralph void *p_addr; 1552130Smckusick char *p_mem; 1652130Smckusick char *p_end; 1752130Smckusick int p_arg; 1852753Sralph void (*p_fcn)(); 1952130Smckusick }; 20