diff options
author | gibbs <gibbs@FreeBSD.org> | 1996-01-07 19:27:06 +0000 |
---|---|---|
committer | gibbs <gibbs@FreeBSD.org> | 1996-01-07 19:27:06 +0000 |
commit | 2563a6a6ba3264475a0e6b5153dcc6804c871e98 (patch) | |
tree | c2d7aa06beb66a85a9c85a6ebda1047b8ddc66f4 /sys | |
parent | d505307114e25beeff506d7a7099760ed3951285 (diff) | |
download | FreeBSD-src-2563a6a6ba3264475a0e6b5153dcc6804c871e98.zip FreeBSD-src-2563a6a6ba3264475a0e6b5153dcc6804c871e98.tar.gz |
Add an adapter_softc field to the scsi_link struct.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/scsi/scsiconf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/scsi/scsiconf.h b/sys/scsi/scsiconf.h index 30e70a7..6f21cec 100644 --- a/sys/scsi/scsiconf.h +++ b/sys/scsi/scsiconf.h @@ -14,7 +14,7 @@ * * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992 * - * $Id: scsiconf.h,v 1.35 1995/12/14 19:38:38 bde Exp $ + * $Id: scsiconf.h,v 1.36 1995/12/17 21:23:37 phk Exp $ */ #ifndef SCSI_SCSICONF_H #define SCSI_SCSICONF_H 1 @@ -300,6 +300,7 @@ struct scsi_link dev_t dev; /* Device major number (character) */ struct scsi_data *sd; /* Device data structure */ struct scsi_inquiry_data inqbuf; /* Inquiry data */ + void *adapter_softc; /* needed for call to foo_scsi_cmd */ }; /* XXX-HA: dufault@hda.com: SDEV_BOUNCE is set down in the adapter drivers |