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