xref: /original-bsd/sys/luna68k/dev/siovar.h (revision 71eaf591)
1 /*
2  * Copyright (c) 1992 OMRON Corporation.
3  * Copyright (c) 1992, 1993
4  *	The Regents of the University of California.  All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * OMRON Corporation.
8  *
9  * %sccs.include.redist.c%
10  *
11  *	@(#)siovar.h	8.1 (Berkeley) 06/10/93
12  */
13 
14 /*
15  * siovar.h --
16  */
17 
18 
19 struct	sio_portc {
20 	int	pc_major;
21 	int	pc_unit;
22 	int	pc_port;
23 	struct siodevice *pc_addr;
24 	int	(*pc_intr)();
25 };
26 
27 struct	sio_softc {
28 	struct sio_portc *sc_pc;
29 };
30