diff options
author | kato <kato@FreeBSD.org> | 1997-04-03 10:09:29 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 1997-04-03 10:09:29 +0000 |
commit | 0b38c619a42b59c97eb55aa90acf3d29866faa4b (patch) | |
tree | c842527090ed0d2bb35a791757913d17a50daa56 /sys/scsi | |
parent | dcdaccb6c67d997e80a2208e3344f6571a1b7348 (diff) | |
download | FreeBSD-src-0b38c619a42b59c97eb55aa90acf3d29866faa4b.zip FreeBSD-src-0b38c619a42b59c97eb55aa90acf3d29866faa4b.tar.gz |
Moved prototypes of scsi_data, scsi_link and proc before scsi_adapter.
If PC98 is defined, the type of the first argument of open_target_lu
is scsi_link structure.
Diffstat (limited to 'sys/scsi')
-rw-r--r-- | sys/scsi/scsiconf.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/scsi/scsiconf.h b/sys/scsi/scsiconf.h index ef45d67..ca4eeaf 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.51 1997/03/23 06:33:50 bde Exp $ + * $Id: scsiconf.h,v 1.52 1997/04/02 09:05:43 jmg Exp $ */ #ifndef SCSI_SCSICONF_H #define SCSI_SCSICONF_H 1 @@ -58,6 +58,14 @@ struct scsi_xfer; struct cfdata; #endif +/* Don't poke around inside of "scsi_data". Each low level + * driver has its own definition for it. + */ +struct scsi_data; +struct scsi_link; /* scsi_link refers to scsi_device and vice-versa */ + +struct proc; + /* * These entrypoints are called by the high-end drivers to get services from * whatever low-end drivers they are attached to each adapter type has one of @@ -101,14 +109,6 @@ struct scsi_adapter * e.g. maximum number of entries queuable to a device by the adapter */ -/* Don't poke around inside of "scsi_data". Each low level - * driver has its own definition for it. - */ -struct scsi_data; -struct scsi_link; /* scsi_link refers to scsi_device and vice-versa */ - -struct proc; - /* * These entry points are called by the low-end drivers to get services from * whatever high-end drivers they are attached to. Each device type has one |