xref: /original-bsd/sys/hp300/stand/scsivar.h (revision e0851aa6)
1 /*
2  * Copyright (c) 1982, 1990 The Regents of the University of California.
3  * 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	7.2 (Berkeley) 08/14/92
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