xref: /original-bsd/sys/luna68k/dev/siovar.h (revision ba9bb8ab)
1 /*
2  * Copyright (c) 1992 OMRON Corporation.
3  * Copyright (c) 1992 The Regents of the University of California.
4  * 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	7.1 (Berkeley) 11/17/92
12  */
13 
14 /*
15  * siovar.h --
16  */
17 
18 
19 struct	sio_portc {
20 	int	pc_major;
21 	int	pc_unit;
22 	struct siodevice *pc_addr;
23 	int	(*pc_intr)();
24 };
25 
26 struct	sio_softc {
27 	struct sio_portc *sc_pc;
28 };
29