aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1997-03-23 04:40:00 +0000
committerBruce Evans <bde@FreeBSD.org>1997-03-23 04:40:00 +0000
commit08febfa74194818eebe9abd24c658aebc27520cb (patch)
tree8b5274b891a1871b43aeac1a4af850eef60fffc2 /sys
parentfe10481de8102b5c0f2b7fea777b318cdb6f0603 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/i386/isa/aha1542.c4
-rw-r--r--sys/i386/isa/aic6360.c4
-rw-r--r--sys/i386/isa/bt5xx-445.c4
-rw-r--r--sys/i386/isa/ncr5380.c2
-rw-r--r--sys/i386/isa/seagate.c4
-rw-r--r--sys/i386/isa/ultra14f.c4
-rw-r--r--sys/i386/isa/wd7000.c2
-rw-r--r--sys/scsi/ch.c3
-rw-r--r--sys/scsi/scsi_driver.h4
9 files changed, 22 insertions, 9 deletions
diff --git a/sys/i386/isa/aha1542.c b/sys/i386/isa/aha1542.c
index c6c955062e69..517882b7ce61 100644
--- a/sys/i386/isa/aha1542.c
+++ b/sys/i386/isa/aha1542.c
@@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
- * $Id$
+ * $Id: aha1542.c,v 1.66 1997/02/22 09:35:52 peter Exp $
*/
/*
@@ -49,6 +49,8 @@
#define NAHA 1
#endif /*KERNEL */
+#include "ioconf.h"
+
/************************** board definitions *******************************/
/*
diff --git a/sys/i386/isa/aic6360.c b/sys/i386/isa/aic6360.c
index 84a4c4bac719..ee3f13f7d7b2 100644
--- a/sys/i386/isa/aic6360.c
+++ b/sys/i386/isa/aic6360.c
@@ -31,7 +31,7 @@
*/
/*
- * $Id$
+ * $Id: aic6360.c,v 1.26 1997/02/22 09:35:55 peter Exp $
*
* Acknowledgements: Many of the algorithms used in this driver are
* inspired by the work of Julian Elischer (julian@tfs.com) and
@@ -133,6 +133,8 @@
#include <sys/kernel.h>
+#include "ioconf.h"
+
/* Definitions, most of them has turned out to be unneccesary, but here they
* are anyway.
*/
diff --git a/sys/i386/isa/bt5xx-445.c b/sys/i386/isa/bt5xx-445.c
index 0877a411bd38..cd6f23f748c3 100644
--- a/sys/i386/isa/bt5xx-445.c
+++ b/sys/i386/isa/bt5xx-445.c
@@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
- * $Id$
+ * $Id: bt5xx-445.c,v 1.6 1997/02/22 09:35:58 peter Exp $
*/
/*
@@ -40,6 +40,8 @@
#include <i386/isa/isa_device.h>
#include <i386/scsi/btreg.h>
+#include "ioconf.h"
+
static int bt_isa_probe __P((struct isa_device *dev));
static int bt_isa_attach __P((struct isa_device *dev));
diff --git a/sys/i386/isa/ncr5380.c b/sys/i386/isa/ncr5380.c
index 2b0dbf7237d0..5a335e02f9bb 100644
--- a/sys/i386/isa/ncr5380.c
+++ b/sys/i386/isa/ncr5380.c
@@ -55,6 +55,8 @@
#include <scsi/scsi_all.h>
#include <scsi/scsiconf.h>
+#include "ioconf.h"
+
#ifdef DEBUG
# define PRINT(s) printf s
#else
diff --git a/sys/i386/isa/seagate.c b/sys/i386/isa/seagate.c
index 2bdc48c5a4fd..dff3dbafe00f 100644
--- a/sys/i386/isa/seagate.c
+++ b/sys/i386/isa/seagate.c
@@ -60,7 +60,7 @@
* that category, with the possible exception of scanners and
* some of the older MO drives.
*
- * $Id$
+ * $Id: seagate.c,v 1.20 1997/02/22 09:37:05 peter Exp $
*/
/*
@@ -133,6 +133,8 @@
#include <scsi/scsi_all.h>
#include <scsi/scsiconf.h>
+#include "ioconf.h"
+
#ifdef DEBUG
# define PRINT(s) printf s
#else
diff --git a/sys/i386/isa/ultra14f.c b/sys/i386/isa/ultra14f.c
index 08204cdfcadd..86316f25d233 100644
--- a/sys/i386/isa/ultra14f.c
+++ b/sys/i386/isa/ultra14f.c
@@ -22,7 +22,7 @@
* today: Fri Jun 2 17:21:03 EST 1994
* added 24F support ++sg
*
- * $Id$
+ * $Id: ultra14f.c,v 1.51 1997/02/22 09:37:20 peter Exp $
*/
#include <sys/types.h>
@@ -49,6 +49,8 @@
#include <scsi/scsi_all.h>
#include <scsi/scsiconf.h>
+#include "ioconf.h"
+
/* */
#ifndef KERNEL
diff --git a/sys/i386/isa/wd7000.c b/sys/i386/isa/wd7000.c
index 22bd0e23ef64..c6175e67cde2 100644
--- a/sys/i386/isa/wd7000.c
+++ b/sys/i386/isa/wd7000.c
@@ -71,6 +71,8 @@
#include <i386/isa/isa_device.h>
+#include "ioconf.h"
+
static struct scsi_device wds_dev =
{
NULL,
diff --git a/sys/scsi/ch.c b/sys/scsi/ch.c
index 9a0ac19aba9a..87788c397fd6 100644
--- a/sys/scsi/ch.c
+++ b/sys/scsi/ch.c
@@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: ch.c,v 1.36 1997/02/22 09:44:25 peter Exp $
+ * $Id: ch.c,v 1.37 1997/03/06 15:36:14 joerg Exp $
*/
#include "opt_scsi.h"
@@ -45,6 +45,7 @@
#include <sys/buf.h>
#include <sys/proc.h>
#include <sys/chio.h>
+#include <sys/conf.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#ifdef DEVFS
diff --git a/sys/scsi/scsi_driver.h b/sys/scsi/scsi_driver.h
index 652661f4a76d..f6875da3a495 100644
--- a/sys/scsi/scsi_driver.h
+++ b/sys/scsi/scsi_driver.h
@@ -35,7 +35,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $Id: scsi_driver.h,v 1.10 1997/02/22 09:44:31 peter Exp $
*
*/
#ifndef _SCSI__DRIVER_H_
@@ -43,8 +43,6 @@
#ifdef KERNEL
-#include <sys/conf.h>
-
struct scsi_link;
struct scsi_device;
struct buf;