xref: /original-bsd/sys/hp300/stand/scsivar.h (revision 3705696b)
1 /*
2  * Copyright (c) 1982, 1990, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Van Jacobson of Lawrence Berkeley Laboratory and the Systems
7  * Programming Group of the University of Utah Computer Science Department.
8  *
9  * %sccs.include.redist.c%
10  *
11  *	@(#)scsivar.h	8.1 (Berkeley) 06/10/93
12  */
13 
14 struct	scsi_softc {
15 	int	sc_ba;
16 	char	*sc_addr;
17 	char	sc_alive;
18 	char	sc_scsi_addr;
19 	char	sc_stat;
20 	char	sc_msg[7];
21 };
22 
23 extern	struct scsi_softc scsi_softc[];
24