increase MESG_IN/OUT field to 7 bytes. Most drives only return 1 byte
[unix-history] / usr / src / sys / hp300 / stand / scsivar.h
CommitLineData
6f843dc9
KM
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 *
a38100f3 11 * @(#)scsivar.h 7.2 (Berkeley) %G%
6f843dc9
KM
12 */
13
14struct scsi_softc {
15 int sc_ba;
16 char *sc_addr;
17 char sc_alive;
18 char sc_scsi_addr;
19 char sc_stat;
a38100f3 20 char sc_msg[7];
6f843dc9
KM
21};
22
23extern struct scsi_softc scsi_softc[];