summaryrefslogtreecommitdiff
path: root/sys/dev/isp
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2011-02-16 16:18:46 +0000
committerKen Smith <kensmith@FreeBSD.org>2011-02-16 16:18:46 +0000
commitdec99dafe5763ba1db6950342aa80a634169c083 (patch)
tree1bd9f5a688ac947b00e690c3c69ccb8df203768d /sys/dev/isp
parent045f17e533c0209bbcddcccbbb0192d61ffd6c9c (diff)
Diffstat (limited to 'sys/dev/isp')
-rw-r--r--sys/dev/isp/DriverManual.txt2
-rw-r--r--sys/dev/isp/Hardware.txt2
-rw-r--r--sys/dev/isp/isp.c2
-rw-r--r--sys/dev/isp/isp_freebsd.c2
-rw-r--r--sys/dev/isp/isp_freebsd.h2
-rw-r--r--sys/dev/isp/isp_ioctl.h2
-rw-r--r--sys/dev/isp/isp_library.c2
-rw-r--r--sys/dev/isp/isp_library.h2
-rw-r--r--sys/dev/isp/isp_pci.c2
-rw-r--r--sys/dev/isp/isp_sbus.c2
-rw-r--r--sys/dev/isp/isp_stds.h2
-rw-r--r--sys/dev/isp/isp_target.c2
-rw-r--r--sys/dev/isp/isp_target.h2
-rw-r--r--sys/dev/isp/ispmbox.h2
-rw-r--r--sys/dev/isp/ispreg.h2
-rw-r--r--sys/dev/isp/ispvar.h2
16 files changed, 16 insertions, 16 deletions
diff --git a/sys/dev/isp/DriverManual.txt b/sys/dev/isp/DriverManual.txt
index ea1968f9f883..f7496d05fbed 100644
--- a/sys/dev/isp/DriverManual.txt
+++ b/sys/dev/isp/DriverManual.txt
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/isp/DriverManual.txt,v 1.1.36.1.6.1 2010/12/21 17:09:25 kensmith Exp $ */
Driver Theory of Operation Manual
diff --git a/sys/dev/isp/Hardware.txt b/sys/dev/isp/Hardware.txt
index 75f01bf7dd36..a5027a364a7c 100644
--- a/sys/dev/isp/Hardware.txt
+++ b/sys/dev/isp/Hardware.txt
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/isp/Hardware.txt,v 1.2.34.1.6.1 2010/12/21 17:09:25 kensmith Exp $ */
Hardware that is Known To or Should Work with This Driver
diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c
index af7fc2fced2a..21f0ffaa9afd 100644
--- a/sys/dev/isp/isp.c
+++ b/sys/dev/isp/isp.c
@@ -47,7 +47,7 @@ __KERNEL_RCSID(0, "$NetBSD$");
#endif
#ifdef __FreeBSD__
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/dev/isp/isp.c,v 1.151.2.8.2.1 2010/12/21 17:09:25 kensmith Exp $");
#include <dev/isp/isp_freebsd.h>
#endif
#ifdef __OpenBSD__
diff --git a/sys/dev/isp/isp_freebsd.c b/sys/dev/isp/isp_freebsd.c
index 01b72d7b3bd6..5192bbf636fd 100644
--- a/sys/dev/isp/isp_freebsd.c
+++ b/sys/dev/isp/isp_freebsd.c
@@ -28,7 +28,7 @@
* Platform (FreeBSD) dependent common attachment code for Qlogic adapters.
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/dev/isp/isp_freebsd.c,v 1.150.2.15.2.1 2010/12/21 17:09:25 kensmith Exp $");
#include <dev/isp/isp_freebsd.h>
#include <sys/unistd.h>
#include <sys/kthread.h>
diff --git a/sys/dev/isp/isp_freebsd.h b/sys/dev/isp/isp_freebsd.h
index 44c8bdf1ca5f..43c5bf504856 100644
--- a/sys/dev/isp/isp_freebsd.h
+++ b/sys/dev/isp/isp_freebsd.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/isp/isp_freebsd.h,v 1.109.2.4.4.1 2010/12/21 17:09:25 kensmith Exp $ */
/*-
* Qlogic ISP SCSI Host Adapter FreeBSD Wrapper Definitions
*
diff --git a/sys/dev/isp/isp_ioctl.h b/sys/dev/isp/isp_ioctl.h
index 8fda052067bb..94858ea3c43c 100644
--- a/sys/dev/isp/isp_ioctl.h
+++ b/sys/dev/isp/isp_ioctl.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/isp/isp_ioctl.h,v 1.21.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $ */
/*-
* Copyright (c) 1997-2006 by Matthew Jacob
* All rights reserved.
diff --git a/sys/dev/isp/isp_library.c b/sys/dev/isp/isp_library.c
index e1b508afbfb2..a45f14b3e213 100644
--- a/sys/dev/isp/isp_library.c
+++ b/sys/dev/isp/isp_library.c
@@ -35,7 +35,7 @@ __KERNEL_RCSID(0, "$NetBSD$");
#endif
#ifdef __FreeBSD__
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/dev/isp/isp_library.c,v 1.15.2.6.2.1 2010/12/21 17:09:25 kensmith Exp $");
#include <dev/isp/isp_freebsd.h>
#endif
#ifdef __OpenBSD__
diff --git a/sys/dev/isp/isp_library.h b/sys/dev/isp/isp_library.h
index 4e0c7f8e67b1..cc979bc22ab6 100644
--- a/sys/dev/isp/isp_library.h
+++ b/sys/dev/isp/isp_library.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/isp/isp_library.h,v 1.9.2.3.4.1 2010/12/21 17:09:25 kensmith Exp $ */
/*-
* Copyright (c) 1997-2009 by Matthew Jacob
* All rights reserved.
diff --git a/sys/dev/isp/isp_pci.c b/sys/dev/isp/isp_pci.c
index 862ad62ffe3a..950cc2c300ea 100644
--- a/sys/dev/isp/isp_pci.c
+++ b/sys/dev/isp/isp_pci.c
@@ -28,7 +28,7 @@
* FreeBSD Version.
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/dev/isp/isp_pci.c,v 1.149.2.7.2.1 2010/12/21 17:09:25 kensmith Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/dev/isp/isp_sbus.c b/sys/dev/isp/isp_sbus.c
index 34dcc09f9e57..44da935ed378 100644
--- a/sys/dev/isp/isp_sbus.c
+++ b/sys/dev/isp/isp_sbus.c
@@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/dev/isp/isp_sbus.c,v 1.37.2.5.4.1 2010/12/21 17:09:25 kensmith Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/dev/isp/isp_stds.h b/sys/dev/isp/isp_stds.h
index 2ed66cb5f37d..ae925a46d2ef 100644
--- a/sys/dev/isp/isp_stds.h
+++ b/sys/dev/isp/isp_stds.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/isp/isp_stds.h,v 1.5.2.2.4.1 2010/12/21 17:09:25 kensmith Exp $ */
/*-
* Copyright (c) 1997-2009 by Matthew Jacob
* All rights reserved.
diff --git a/sys/dev/isp/isp_target.c b/sys/dev/isp/isp_target.c
index 8707961c24f9..8202f4496110 100644
--- a/sys/dev/isp/isp_target.c
+++ b/sys/dev/isp/isp_target.c
@@ -41,7 +41,7 @@
#endif
#ifdef __FreeBSD__
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/dev/isp/isp_target.c,v 1.46.2.2.4.1 2010/12/21 17:09:25 kensmith Exp $");
#include <dev/isp/isp_freebsd.h>
#endif
#ifdef __OpenBSD__
diff --git a/sys/dev/isp/isp_target.h b/sys/dev/isp/isp_target.h
index 9905c4fbcb32..59476ec4fa39 100644
--- a/sys/dev/isp/isp_target.h
+++ b/sys/dev/isp/isp_target.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/isp/isp_target.h,v 1.31.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $ */
/*-
* Copyright (c) 1997-2009 by Matthew Jacob
* All rights reserved.
diff --git a/sys/dev/isp/ispmbox.h b/sys/dev/isp/ispmbox.h
index 36a73913ac8f..bced608de4af 100644
--- a/sys/dev/isp/ispmbox.h
+++ b/sys/dev/isp/ispmbox.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/isp/ispmbox.h,v 1.60.2.3.4.1 2010/12/21 17:09:25 kensmith Exp $ */
/*-
* Copyright (c) 1997-2009 by Matthew Jacob
* All rights reserved.
diff --git a/sys/dev/isp/ispreg.h b/sys/dev/isp/ispreg.h
index 2d616aeb1807..7b7b8fffc05d 100644
--- a/sys/dev/isp/ispreg.h
+++ b/sys/dev/isp/ispreg.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/isp/ispreg.h,v 1.30.2.2.4.1 2010/12/21 17:09:25 kensmith Exp $ */
/*-
* Copyright (c) 1997-2009 by Matthew Jacob
* All rights reserved.
diff --git a/sys/dev/isp/ispvar.h b/sys/dev/isp/ispvar.h
index 48a10742f7b3..8b967b94ac0f 100644
--- a/sys/dev/isp/ispvar.h
+++ b/sys/dev/isp/ispvar.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/isp/ispvar.h,v 1.86.2.4.4.1 2010/12/21 17:09:25 kensmith Exp $ */
/*-
* Copyright (c) 1997-2009 by Matthew Jacob
* All rights reserved.