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/7e4e6d328552
branches:  trunk
changeset: 517484:7e4e6d328552
user:      lukem <lukem%NetBSD.org@localhost>
date:      Tue Nov 13 12:51:12 2001 +0000

description:
add RCSID

diffstat:

 sys/dev/arcbios/arcbios.c        |  5 ++++-
 sys/dev/arcbios/arcbios_tty.c    |  5 ++++-
 sys/dev/ata/ata.c                |  5 ++++-
 sys/dev/ata/ata_wdc.c            |  5 ++++-
 sys/dev/ata/wd.c                 |  5 ++++-
 sys/dev/bi/bi.c                  |  5 ++++-
 sys/dev/bi/if_ni.c               |  5 ++++-
 sys/dev/bi/kdb.c                 |  5 ++++-
 sys/dev/bi/uba_bi.c              |  5 ++++-
 sys/dev/cardbus/adv_cardbus.c    |  5 ++++-
 sys/dev/cardbus/ahc_cardbus.c    |  5 ++++-
 sys/dev/cardbus/cardbus.c        |  5 ++++-
 sys/dev/cardbus/cardbus_exrom.c  |  5 ++++-
 sys/dev/cardbus/cardbus_map.c    |  4 +++-
 sys/dev/cardbus/cardslot.c       |  5 ++++-
 sys/dev/cardbus/com_cardbus.c    |  5 ++++-
 sys/dev/cardbus/ehci_cardbus.c   |  5 ++++-
 sys/dev/cardbus/fwohci_cardbus.c |  5 ++++-
 sys/dev/cardbus/if_ex_cardbus.c  |  5 ++++-
 sys/dev/cardbus/if_fxp_cardbus.c |  5 ++++-
 sys/dev/cardbus/if_rtk_cardbus.c |  5 ++++-
 sys/dev/cardbus/if_tlp_cardbus.c |  5 ++++-
 sys/dev/cardbus/ohci_cardbus.c   |  5 ++++-
 sys/dev/cardbus/rbus.c           |  5 +++--
 sys/dev/cardbus/rbus_ppb.c       |  5 ++++-
 25 files changed, 98 insertions(+), 26 deletions(-)

diffs (truncated from 474 to 300 lines):

diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/arcbios/arcbios.c
--- a/sys/dev/arcbios/arcbios.c Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/arcbios/arcbios.c Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: arcbios.c,v 1.4 2001/09/08 01:39:11 rafal Exp $        */
+/*     $NetBSD: arcbios.c,v 1.5 2001/11/13 12:53:24 lukem Exp $        */
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: arcbios.c,v 1.5 2001/11/13 12:53:24 lukem Exp $");
+
 #include <sys/param.h>
 
 #include <sys/systm.h>
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/arcbios/arcbios_tty.c
--- a/sys/dev/arcbios/arcbios_tty.c     Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/arcbios/arcbios_tty.c     Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: arcbios_tty.c,v 1.2 2001/09/08 01:39:12 rafal Exp $    */
+/*     $NetBSD: arcbios_tty.c,v 1.3 2001/11/13 12:53:24 lukem Exp $    */
 
 /*
  * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
@@ -27,6 +27,9 @@
  * rights to redistribute these changes.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: arcbios_tty.c,v 1.3 2001/11/13 12:53:24 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/user.h>
 #include <sys/uio.h> 
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/ata/ata.c
--- a/sys/dev/ata/ata.c Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/ata/ata.c Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*      $NetBSD: ata.c,v 1.13 2000/05/15 08:31:33 bouyer Exp $      */
+/*      $NetBSD: ata.c,v 1.14 2001/11/13 12:53:09 lukem Exp $      */
 /*
  * Copyright (c) 1998 Manuel Bouyer.  All rights reserved.
  *
@@ -28,6 +28,9 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: ata.c,v 1.14 2001/11/13 12:53:09 lukem Exp $");
+
 #ifndef WDCDEBUG
 #define WDCDEBUG
 #endif /* WDCDEBUG */
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/ata/ata_wdc.c
--- a/sys/dev/ata/ata_wdc.c     Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/ata/ata_wdc.c     Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ata_wdc.c,v 1.30 2001/06/13 18:17:40 bjh21 Exp $       */
+/*     $NetBSD: ata_wdc.c,v 1.31 2001/11/13 12:53:09 lukem Exp $       */
 
 /*
  * Copyright (c) 1998 Manuel Bouyer.
@@ -68,6 +68,9 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: ata_wdc.c,v 1.31 2001/11/13 12:53:09 lukem Exp $");
+
 #ifndef WDCDEBUG
 #define WDCDEBUG
 #endif /* WDCDEBUG */
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/ata/wd.c
--- a/sys/dev/ata/wd.c  Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/ata/wd.c  Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: wd.c,v 1.214 2001/06/13 18:17:40 bjh21 Exp $ */
+/*     $NetBSD: wd.c,v 1.215 2001/11/13 12:53:09 lukem Exp $ */
 
 /*
  * Copyright (c) 1998 Manuel Bouyer.  All rights reserved.
@@ -65,6 +65,9 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: wd.c,v 1.215 2001/11/13 12:53:09 lukem Exp $");
+
 #ifndef WDCDEBUG
 #define WDCDEBUG
 #endif /* WDCDEBUG */
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/bi/bi.c
--- a/sys/dev/bi/bi.c   Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/bi/bi.c   Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bi.c,v 1.16 2000/07/26 12:41:40 ragge Exp $ */
+/*     $NetBSD: bi.c,v 1.17 2001/11/13 12:51:34 lukem Exp $ */
 /*
  * Copyright (c) 1996 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -40,6 +40,9 @@
  *   handle BIbus errors more gracefully.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: bi.c,v 1.17 2001/11/13 12:51:34 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/systm.h>
 
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/bi/if_ni.c
--- a/sys/dev/bi/if_ni.c        Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/bi/if_ni.c        Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_ni.c,v 1.13 2001/07/18 16:53:52 thorpej Exp $ */
+/*     $NetBSD: if_ni.c,v 1.14 2001/11/13 12:51:34 lukem Exp $ */
 /*
  * Copyright (c) 2000 Ludd, University of Lule}, Sweden. All rights reserved.
  *
@@ -35,6 +35,9 @@
  *     Collect statistics.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: if_ni.c,v 1.14 2001/11/13 12:51:34 lukem Exp $");
+
 #include "opt_inet.h"
 #include "bpfilter.h"
 
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/bi/kdb.c
--- a/sys/dev/bi/kdb.c  Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/bi/kdb.c  Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kdb.c,v 1.25 2001/07/18 16:51:39 thorpej Exp $ */
+/*     $NetBSD: kdb.c,v 1.26 2001/11/13 12:51:34 lukem Exp $ */
 /*
  * Copyright (c) 1996 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -39,6 +39,9 @@
  *   Nices hardware error handling.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: kdb.c,v 1.26 2001/11/13 12:51:34 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/kernel.h>
 #include <sys/buf.h>
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/bi/uba_bi.c
--- a/sys/dev/bi/uba_bi.c       Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/bi/uba_bi.c       Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uba_bi.c,v 1.4 1999/07/12 13:43:40 ragge Exp $ */
+/*     $NetBSD: uba_bi.c,v 1.5 2001/11/13 12:51:34 lukem Exp $ */
 /*
  * Copyright (c) 1998 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -34,6 +34,9 @@
  * DWBUA BI-Unibus adapter
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: uba_bi.c,v 1.5 2001/11/13 12:51:34 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/kernel.h>
 #include <sys/buf.h>
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/cardbus/adv_cardbus.c
--- a/sys/dev/cardbus/adv_cardbus.c     Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/cardbus/adv_cardbus.c     Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: adv_cardbus.c,v 1.4 2001/09/29 02:16:21 yamt Exp $     */
+/*     $NetBSD: adv_cardbus.c,v 1.5 2001/11/13 12:51:12 lukem Exp $    */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -42,6 +42,9 @@
  * and modified by YAMAMOTO Takashi.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: adv_cardbus.c,v 1.5 2001/11/13 12:51:12 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/malloc.h>
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/cardbus/ahc_cardbus.c
--- a/sys/dev/cardbus/ahc_cardbus.c     Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/cardbus/ahc_cardbus.c     Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ahc_cardbus.c,v 1.4 2001/09/29 01:52:23 yamt Exp $     */
+/*     $NetBSD: ahc_cardbus.c,v 1.5 2001/11/13 12:51:12 lukem Exp $    */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -44,6 +44,9 @@
  *     - power management
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: ahc_cardbus.c,v 1.5 2001/11/13 12:51:12 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/malloc.h>
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/cardbus/cardbus.c
--- a/sys/dev/cardbus/cardbus.c Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/cardbus/cardbus.c Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cardbus.c,v 1.36 2001/11/06 03:11:10 augustss Exp $    */
+/*     $NetBSD: cardbus.c,v 1.37 2001/11/13 12:51:12 lukem Exp $       */
 
 /*
  * Copyright (c) 1997, 1998, 1999 and 2000
@@ -32,6 +32,9 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: cardbus.c,v 1.37 2001/11/13 12:51:12 lukem Exp $");
+
 #include "opt_cardbus.h"
 
 #include <sys/types.h>
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/cardbus/cardbus_exrom.c
--- a/sys/dev/cardbus/cardbus_exrom.c   Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/cardbus/cardbus_exrom.c   Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cardbus_exrom.c,v 1.5 2000/05/08 18:23:36 thorpej Exp $ */
+/* $NetBSD: cardbus_exrom.c,v 1.6 2001/11/13 12:51:12 lukem Exp $ */
 
 /*
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -35,6 +35,9 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: cardbus_exrom.c,v 1.6 2001/11/13 12:51:12 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/queue.h>
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/cardbus/cardbus_map.c
--- a/sys/dev/cardbus/cardbus_map.c     Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/cardbus/cardbus_map.c     Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cardbus_map.c,v 1.12 2001/04/30 02:46:20 jmc Exp $     */
+/*     $NetBSD: cardbus_map.c,v 1.13 2001/11/13 12:51:12 lukem Exp $   */
 
 /*
  * Copyright (c) 1999 and 2000
@@ -32,6 +32,8 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: cardbus_map.c,v 1.13 2001/11/13 12:51:12 lukem Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/cardbus/cardslot.c
--- a/sys/dev/cardbus/cardslot.c        Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/cardbus/cardslot.c        Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cardslot.c,v 1.14 2001/03/27 10:34:05 haya Exp $       */
+/*     $NetBSD: cardslot.c,v 1.15 2001/11/13 12:51:12 lukem Exp $      */
 
 /*
  * Copyright (c) 1999 and 2000
@@ -32,6 +32,9 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: cardslot.c,v 1.15 2001/11/13 12:51:12 lukem Exp $");
+
 #include "opt_cardslot.h"
 
 #include <sys/types.h>
diff -r 87586a101fc8 -r 7e4e6d328552 sys/dev/cardbus/com_cardbus.c
--- a/sys/dev/cardbus/com_cardbus.c     Tue Nov 13 12:49:45 2001 +0000
+++ b/sys/dev/cardbus/com_cardbus.c     Tue Nov 13 12:51:12 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: com_cardbus.c,v 1.5 2000/08/22 11:42:14 joda Exp $ */
+/* $NetBSD: com_cardbus.c,v 1.6 2001/11/13 12:51:12 lukem Exp $ */
 
 /*
  * Copyright (c) 2000 Johan Danielsson
@@ -39,6 +39,9 @@
    devices with more than one BAR, the list of known devices has to be
    updated below.  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: com_cardbus.c,v 1.6 2001/11/13 12:51:12 lukem Exp $");
+



Home | Main Index | Thread Index | Old Index