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/84f1b5411b54
branches: trunk
changeset: 517482:84f1b5411b54
user: lukem <lukem%NetBSD.org@localhost>
date: Tue Nov 13 12:47:33 2001 +0000
description:
add RCSID
diffstat:
sys/dev/eisa/ahb.c | 23 +++++++++++++----------
sys/dev/eisa/ahc_eisa.c | 5 ++++-
sys/dev/eisa/bha_eisa.c | 5 ++++-
sys/dev/eisa/cac_eisa.c | 5 ++++-
sys/dev/eisa/depca_eisa.c | 5 ++++-
sys/dev/eisa/dpt_eisa.c | 5 ++++-
sys/dev/eisa/eisa.c | 5 ++++-
sys/dev/eisa/if_ep_eisa.c | 5 ++++-
sys/dev/eisa/if_fea.c | 5 ++++-
sys/dev/eisa/if_tlp_eisa.c | 5 ++++-
sys/dev/eisa/mlx_eisa.c | 5 ++++-
sys/dev/eisa/uha_eisa.c | 5 ++++-
sys/dev/hpc/bicons.c | 5 ++++-
sys/dev/hpc/biconsdev.c | 5 ++++-
sys/dev/hpc/bifont.c | 5 ++++-
sys/dev/hpc/bivideo.c | 8 +++++---
sys/dev/hpc/btnmgr.c | 6 +++++-
sys/dev/hpc/button.c | 5 ++++-
sys/dev/hpc/fontconv.c | 5 ++++-
sys/dev/hpc/hpccmap.c | 6 +++++-
sys/dev/hpc/hpcfb.c | 7 +++++--
sys/dev/hpc/hpcin.c | 6 +++++-
sys/dev/hpc/hpcioman.c | 5 ++++-
sys/dev/hpc/hpckbd.c | 5 ++++-
sys/dev/hpc/hpcout.c | 6 +++++-
sys/dev/hpc/mra.c | 5 ++++-
sys/dev/hpc/pckbd_encode.c | 5 ++++-
sys/dev/hpc/pwctl.c | 5 ++++-
sys/dev/hpc/tpcalib.c | 5 ++++-
sys/dev/hpc/video_subr.c | 5 ++++-
30 files changed, 135 insertions(+), 42 deletions(-)
diffs (truncated from 597 to 300 lines):
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/eisa/ahb.c
--- a/sys/dev/eisa/ahb.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/eisa/ahb.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,13 +1,4 @@
-/* $NetBSD: ahb.c,v 1.32 2001/04/25 17:53:27 bouyer Exp $ */
-
-#include "opt_ddb.h"
-
-#undef AHBDEBUG
-#ifdef DDB
-#define integrate
-#else
-#define integrate static inline
-#endif
+/* $NetBSD: ahb.c,v 1.33 2001/11/13 12:47:33 lukem Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -61,6 +52,18 @@
* functioning of this software in any circumstances.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: ahb.c,v 1.33 2001/11/13 12:47:33 lukem Exp $");
+
+#include "opt_ddb.h"
+
+#undef AHBDEBUG
+#ifdef DDB
+#define integrate
+#else
+#define integrate static inline
+#endif
+
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/eisa/ahc_eisa.c
--- a/sys/dev/eisa/ahc_eisa.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/eisa/ahc_eisa.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ahc_eisa.c,v 1.19 2000/09/24 12:37:04 jdolecek Exp $ */
+/* $NetBSD: ahc_eisa.c,v 1.20 2001/11/13 12:47:33 lukem Exp $ */
/*
* Product specific probe and attach routines for:
@@ -31,6 +31,9 @@
* $FreeBSD: src/sys/dev/aic7xxx/ahc_eisa.c,v 1.15 2000/01/29 14:22:19 peter Exp $
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: ahc_eisa.c,v 1.20 2001/11/13 12:47:33 lukem Exp $");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/eisa/bha_eisa.c
--- a/sys/dev/eisa/bha_eisa.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/eisa/bha_eisa.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bha_eisa.c,v 1.18 2001/05/03 20:34:54 ross Exp $ */
+/* $NetBSD: bha_eisa.c,v 1.19 2001/11/13 12:47:33 lukem Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: bha_eisa.c,v 1.19 2001/11/13 12:47:33 lukem Exp $");
+
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/eisa/cac_eisa.c
--- a/sys/dev/eisa/cac_eisa.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/eisa/cac_eisa.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cac_eisa.c,v 1.2 2000/10/19 15:31:21 ad Exp $ */
+/* $NetBSD: cac_eisa.c,v 1.3 2001/11/13 12:47:33 lukem Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -67,6 +67,9 @@
* EISA front-end for cac(4) driver.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: cac_eisa.c,v 1.3 2001/11/13 12:47:33 lukem Exp $");
+
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/eisa/depca_eisa.c
--- a/sys/dev/eisa/depca_eisa.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/eisa/depca_eisa.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: depca_eisa.c,v 1.1 2000/08/11 02:27:07 thorpej Exp $ */
+/* $NetBSD: depca_eisa.c,v 1.2 2001/11/13 12:47:33 lukem Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -40,6 +40,9 @@
* EISA bus front-end for the Digital DEPCA Ethernet controller.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: depca_eisa.c,v 1.2 2001/11/13 12:47:33 lukem Exp $");
+
#include "opt_inet.h"
#include "bpfilter.h"
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/eisa/dpt_eisa.c
--- a/sys/dev/eisa/dpt_eisa.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/eisa/dpt_eisa.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: dpt_eisa.c,v 1.5 2001/04/25 17:53:27 bouyer Exp $ */
+/* $NetBSD: dpt_eisa.c,v 1.6 2001/11/13 12:47:33 lukem Exp $ */
/*
* Copyright (c) 1999, 2000, 2001 Andrew Doran <ad%netbsd.org@localhost>
@@ -31,6 +31,9 @@
* EISA front-end for DPT EATA SCSI driver.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: dpt_eisa.c,v 1.6 2001/11/13 12:47:33 lukem Exp $");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/eisa/eisa.c
--- a/sys/dev/eisa/eisa.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/eisa/eisa.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: eisa.c,v 1.24 2001/01/18 20:28:25 jdolecek Exp $ */
+/* $NetBSD: eisa.c,v 1.25 2001/11/13 12:47:33 lukem Exp $ */
/*
* Copyright (c) 1995, 1996 Christopher G. Demetriou
@@ -38,6 +38,9 @@
* living on it.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: eisa.c,v 1.25 2001/11/13 12:47:33 lukem Exp $");
+
#include "opt_eisaverbose.h"
#include <sys/param.h>
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/eisa/if_ep_eisa.c
--- a/sys/dev/eisa/if_ep_eisa.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/eisa/if_ep_eisa.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ep_eisa.c,v 1.23 2001/09/14 13:46:42 martin Exp $ */
+/* $NetBSD: if_ep_eisa.c,v 1.24 2001/11/13 12:47:33 lukem Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -70,6 +70,9 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: if_ep_eisa.c,v 1.24 2001/11/13 12:47:33 lukem Exp $");
+
#include "opt_inet.h"
#include "opt_ns.h"
#include "bpfilter.h"
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/eisa/if_fea.c
--- a/sys/dev/eisa/if_fea.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/eisa/if_fea.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_fea.c,v 1.23 2001/06/13 10:46:02 wiz Exp $ */
+/* $NetBSD: if_fea.c,v 1.24 2001/11/13 12:47:33 lukem Exp $ */
/*-
* Copyright (c) 1995, 1996 Matt Thomas <matt%3am-software.com@localhost>
@@ -32,6 +32,9 @@
* This module support the DEFEA EISA FDDI Controller.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: if_fea.c,v 1.24 2001/11/13 12:47:33 lukem Exp $");
+
#include "opt_inet.h"
#include <sys/param.h>
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/eisa/if_tlp_eisa.c
--- a/sys/dev/eisa/if_tlp_eisa.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/eisa/if_tlp_eisa.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_tlp_eisa.c,v 1.6 2000/08/14 14:26:03 thorpej Exp $ */
+/* $NetBSD: if_tlp_eisa.c,v 1.7 2001/11/13 12:47:33 lukem Exp $ */
/*-
* Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
@@ -42,6 +42,9 @@
* Ethernet controller family driver.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: if_tlp_eisa.c,v 1.7 2001/11/13 12:47:33 lukem Exp $");
+
#include "opt_inet.h"
#include "opt_ns.h"
#include "bpfilter.h"
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/eisa/mlx_eisa.c
--- a/sys/dev/eisa/mlx_eisa.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/eisa/mlx_eisa.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: mlx_eisa.c,v 1.3 2001/05/10 09:41:19 ad Exp $ */
+/* $NetBSD: mlx_eisa.c,v 1.4 2001/11/13 12:47:33 lukem Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -40,6 +40,9 @@
* EISA front-end for mlx(4) driver.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: mlx_eisa.c,v 1.4 2001/11/13 12:47:33 lukem Exp $");
+
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/eisa/uha_eisa.c
--- a/sys/dev/eisa/uha_eisa.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/eisa/uha_eisa.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: uha_eisa.c,v 1.15 2000/03/23 07:01:28 thorpej Exp $ */
+/* $NetBSD: uha_eisa.c,v 1.16 2001/11/13 12:47:33 lukem Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: uha_eisa.c,v 1.16 2001/11/13 12:47:33 lukem Exp $");
+
#include "opt_ddb.h"
#include <sys/types.h>
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/hpc/bicons.c
--- a/sys/dev/hpc/bicons.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/hpc/bicons.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bicons.c,v 1.3 2001/09/15 15:27:59 uch Exp $ */
+/* $NetBSD: bicons.c,v 1.4 2001/11/13 12:47:56 lukem Exp $ */
/*-
* Copyright (c) 1999-2001
@@ -34,6 +34,9 @@
*
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: bicons.c,v 1.4 2001/11/13 12:47:56 lukem Exp $");
+
#define HALF_FONT
#include <sys/param.h>
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/hpc/biconsdev.c
--- a/sys/dev/hpc/biconsdev.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/hpc/biconsdev.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: biconsdev.c,v 1.2 2001/05/02 10:32:10 scw Exp $ */
+/* $NetBSD: biconsdev.c,v 1.3 2001/11/13 12:47:56 lukem Exp $ */
/*-
* Copyright (c) 1999-2001
@@ -70,6 +70,9 @@
*
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: biconsdev.c,v 1.3 2001/11/13 12:47:56 lukem Exp $");
+
#include "biconsdev.h"
#if NBICONSDEV > 0
diff -r d50586f4fe22 -r 84f1b5411b54 sys/dev/hpc/bifont.c
--- a/sys/dev/hpc/bifont.c Tue Nov 13 12:24:11 2001 +0000
+++ b/sys/dev/hpc/bifont.c Tue Nov 13 12:47:33 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bifont.c,v 1.2 2001/09/15 15:27:59 uch Exp $ */
+/* $NetBSD: bifont.c,v 1.3 2001/11/13 12:47:56 lukem Exp $ */
/*-
* Copyright (c) 1999
@@ -34,6 +34,9 @@
*
*/
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: bifont.c,v 1.3 2001/11/13 12:47:56 lukem Exp $");
+
Home |
Main Index |
Thread Index |
Old Index