Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev add RCSID



details:   https://anonhg.NetBSD.org/src/rev/d50586f4fe22
branches:  trunk
changeset: 517481:d50586f4fe22
user:      lukem <lukem%NetBSD.org@localhost>
date:      Tue Nov 13 12:24:11 2001 +0000

description:
add RCSID

diffstat:

 sys/dev/i2c/i2c_bus.c     |   5 ++++-
 sys/dev/i2c/i2c_eeprom.c  |   5 ++++-
 sys/dev/i2o/dpti.c        |   5 ++++-
 sys/dev/i2o/iop.c         |   5 ++++-
 sys/dev/i2o/iopl.c        |   5 ++++-
 sys/dev/i2o/iopsp.c       |   5 ++++-
 sys/dev/i2o/ld_iop.c      |   5 ++++-
 sys/dev/ieee1394/fwnode.c |   5 ++++-
 sys/dev/ieee1394/fwohci.c |  12 ++++++++----
 sys/dev/ieee1394/fwscsi.c |   5 ++++-
 sys/dev/ieee1394/if_fw.c  |   5 ++++-
 11 files changed, 48 insertions(+), 14 deletions(-)

diffs (216 lines):

diff -r 12be0c509f18 -r d50586f4fe22 sys/dev/i2c/i2c_bus.c
--- a/sys/dev/i2c/i2c_bus.c     Tue Nov 13 09:27:06 2001 +0000
+++ b/sys/dev/i2c/i2c_bus.c     Tue Nov 13 12:24:11 2001 +0000
@@ -1,4 +1,4 @@
-/*  $NetBSD: i2c_bus.c,v 1.1 1997/10/17 17:21:14 bouyer Exp $   */
+/*  $NetBSD: i2c_bus.c,v 1.2 2001/11/13 12:25:27 lukem Exp $   */
  
 /*
  * Copyright (c) 1997 Manuel Bouyer.  All rights reserved.
@@ -29,6 +29,9 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: i2c_bus.c,v 1.2 2001/11/13 12:25:27 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kernel.h>
diff -r 12be0c509f18 -r d50586f4fe22 sys/dev/i2c/i2c_eeprom.c
--- a/sys/dev/i2c/i2c_eeprom.c  Tue Nov 13 09:27:06 2001 +0000
+++ b/sys/dev/i2c/i2c_eeprom.c  Tue Nov 13 12:24:11 2001 +0000
@@ -1,4 +1,4 @@
-/*  $NetBSD: i2c_eeprom.c,v 1.1 1997/10/17 17:21:23 bouyer Exp $   */
+/*  $NetBSD: i2c_eeprom.c,v 1.2 2001/11/13 12:25:27 lukem Exp $   */
  
 /*
  * Copyright (c) 1997 Manuel Bouyer.  All rights reserved.
@@ -34,6 +34,9 @@
   * Data Sheet available from www.microchip.com
   */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: i2c_eeprom.c,v 1.2 2001/11/13 12:25:27 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kernel.h>
diff -r 12be0c509f18 -r d50586f4fe22 sys/dev/i2o/dpti.c
--- a/sys/dev/i2o/dpti.c        Tue Nov 13 09:27:06 2001 +0000
+++ b/sys/dev/i2o/dpti.c        Tue Nov 13 12:24:11 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: dpti.c,v 1.2 2001/09/27 18:43:37 ad Exp $      */
+/*     $NetBSD: dpti.c,v 1.3 2001/11/13 12:24:58 lukem Exp $   */
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -63,6 +63,9 @@
  * Adaptec/DPT I2O control interface.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: dpti.c,v 1.3 2001/11/13 12:24:58 lukem Exp $");
+
 #include "opt_i2o.h"
 
 #include <sys/param.h>
diff -r 12be0c509f18 -r d50586f4fe22 sys/dev/i2o/iop.c
--- a/sys/dev/i2o/iop.c Tue Nov 13 09:27:06 2001 +0000
+++ b/sys/dev/i2o/iop.c Tue Nov 13 12:24:11 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: iop.c,v 1.19 2001/09/27 18:43:37 ad Exp $      */
+/*     $NetBSD: iop.c,v 1.20 2001/11/13 12:24:58 lukem Exp $   */
 
 /*-
  * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
@@ -40,6 +40,9 @@
  * Support for I2O IOPs (intelligent I/O processors).
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: iop.c,v 1.20 2001/11/13 12:24:58 lukem Exp $");
+
 #include "opt_i2o.h"
 #include "iop.h"
 
diff -r 12be0c509f18 -r d50586f4fe22 sys/dev/i2o/iopl.c
--- a/sys/dev/i2o/iopl.c        Tue Nov 13 09:27:06 2001 +0000
+++ b/sys/dev/i2o/iopl.c        Tue Nov 13 12:24:11 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: iopl.c,v 1.4 2001/09/18 18:15:52 wiz Exp $     */
+/*     $NetBSD: iopl.c,v 1.5 2001/11/13 12:24:58 lukem Exp $   */
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -45,6 +45,9 @@
  * - Interrupts run at IPL_BIO.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: iopl.c,v 1.5 2001/11/13 12:24:58 lukem Exp $");
+
 #include "opt_i2o.h"
 #include "opt_inet.h"
 #include "opt_ns.h"
diff -r 12be0c509f18 -r d50586f4fe22 sys/dev/i2o/iopsp.c
--- a/sys/dev/i2o/iopsp.c       Tue Nov 13 09:27:06 2001 +0000
+++ b/sys/dev/i2o/iopsp.c       Tue Nov 13 12:24:11 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: iopsp.c,v 1.10 2001/08/22 09:42:06 ad Exp $    */
+/*     $NetBSD: iopsp.c,v 1.11 2001/11/13 12:24:59 lukem Exp $ */
 
 /*-
  * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
@@ -41,6 +41,9 @@
  * we group them by controlling port.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: iopsp.c,v 1.11 2001/11/13 12:24:59 lukem Exp $");
+
 #include "opt_i2o.h"
 
 #include <sys/param.h>
diff -r 12be0c509f18 -r d50586f4fe22 sys/dev/i2o/ld_iop.c
--- a/sys/dev/i2o/ld_iop.c      Tue Nov 13 09:27:06 2001 +0000
+++ b/sys/dev/i2o/ld_iop.c      Tue Nov 13 12:24:11 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ld_iop.c,v 1.9 2001/08/22 09:42:06 ad Exp $    */
+/*     $NetBSD: ld_iop.c,v 1.10 2001/11/13 12:24:59 lukem Exp $        */
 
 /*-
  * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
@@ -42,6 +42,9 @@
  * fixed direct-access devices.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: ld_iop.c,v 1.10 2001/11/13 12:24:59 lukem Exp $");
+
 #include "opt_i2o.h"
 #include "rnd.h"
 
diff -r 12be0c509f18 -r d50586f4fe22 sys/dev/ieee1394/fwnode.c
--- a/sys/dev/ieee1394/fwnode.c Tue Nov 13 09:27:06 2001 +0000
+++ b/sys/dev/ieee1394/fwnode.c Tue Nov 13 12:24:11 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fwnode.c,v 1.5 2001/05/14 05:46:41 jmc Exp $   */
+/*     $NetBSD: fwnode.c,v 1.6 2001/11/13 12:24:11 lukem Exp $ */
 
 /*
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: fwnode.c,v 1.6 2001/11/13 12:24:11 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/types.h>
 #include <sys/kernel.h>
diff -r 12be0c509f18 -r d50586f4fe22 sys/dev/ieee1394/fwohci.c
--- a/sys/dev/ieee1394/fwohci.c Tue Nov 13 09:27:06 2001 +0000
+++ b/sys/dev/ieee1394/fwohci.c Tue Nov 13 12:24:11 2001 +0000
@@ -1,7 +1,5 @@
-/*     $NetBSD: fwohci.c,v 1.44 2001/10/12 09:27:23 haya Exp $ */
-
-#define DOUBLEBUF 1
-#define NO_THREAD 1
+/*     $NetBSD: fwohci.c,v 1.45 2001/11/13 12:24:11 lukem Exp $        */
+
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -50,6 +48,12 @@
  * by HAYAKAWA Koichi <haya%netbsd.org@localhost>.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: fwohci.c,v 1.45 2001/11/13 12:24:11 lukem Exp $");
+
+#define DOUBLEBUF 1
+#define NO_THREAD 1
+
 #include "opt_inet.h"
 
 #include <sys/param.h>
diff -r 12be0c509f18 -r d50586f4fe22 sys/dev/ieee1394/fwscsi.c
--- a/sys/dev/ieee1394/fwscsi.c Tue Nov 13 09:27:06 2001 +0000
+++ b/sys/dev/ieee1394/fwscsi.c Tue Nov 13 12:24:11 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fwscsi.c,v 1.2 2001/05/03 04:37:43 jmc Exp $   */
+/*     $NetBSD: fwscsi.c,v 1.3 2001/11/13 12:24:12 lukem Exp $ */
 
 /*
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: fwscsi.c,v 1.3 2001/11/13 12:24:12 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/types.h>
 #include <sys/kernel.h>
diff -r 12be0c509f18 -r d50586f4fe22 sys/dev/ieee1394/if_fw.c
--- a/sys/dev/ieee1394/if_fw.c  Tue Nov 13 09:27:06 2001 +0000
+++ b/sys/dev/ieee1394/if_fw.c  Tue Nov 13 12:24:11 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_fw.c,v 1.10 2001/07/02 10:46:03 onoe Exp $  */
+/*     $NetBSD: if_fw.c,v 1.11 2001/11/13 12:24:12 lukem Exp $ */
 
 /* XXX ALTQ XXX */
 
@@ -38,6 +38,9 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: if_fw.c,v 1.11 2001/11/13 12:24:12 lukem Exp $");
+
 #include "opt_inet.h"
 #include "bpfilter.h"
 



Home | Main Index | Thread Index | Old Index