From 52c38f7f7424063e0c75edb8e4d1ca807aca8f61 Mon Sep 17 00:00:00 2001 From: lukem Date: Mon, 14 Jul 2003 22:32:39 +0000 Subject: [PATCH] add __KERNEL_RCSID() --- sys/arch/x86/x86/apic.c | 8 ++++++-- sys/arch/x86/x86/cacheinfo.c | 5 ++++- sys/arch/x86/x86/i8259.c | 5 ++++- sys/arch/x86/x86/intr.c | 5 ++++- sys/arch/x86/x86/ioapic.c | 7 ++++++- sys/arch/x86/x86/ipi.c | 5 +++-- sys/arch/x86/x86/lapic.c | 4 +++- sys/arch/x86/x86/lock_machdep.c | 3 ++- sys/arch/x86/x86/mpacpi.c | 5 ++++- sys/arch/x86/x86/mpbios.c | 5 ++++- 10 files changed, 40 insertions(+), 12 deletions(-) diff --git a/sys/arch/x86/x86/apic.c b/sys/arch/x86/x86/apic.c index be2ba1f99691..94114fed0578 100644 --- a/sys/arch/x86/x86/apic.c +++ b/sys/arch/x86/x86/apic.c @@ -1,4 +1,4 @@ -/* $NetBSD: apic.c,v 1.1 2003/02/26 21:26:11 fvdl Exp $ */ +/* $NetBSD: apic.c,v 1.2 2003/07/14 22:32:39 lukem Exp $ */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -38,6 +38,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include +__KERNEL_RCSID(0, "$NetBSD: apic.c,v 1.2 2003/07/14 22:32:39 lukem Exp $"); + #include #include #include @@ -62,7 +65,8 @@ const char redirlofmt[] = "\177\20" const char redirhifmt[] = "\177\20" "f\30\10target\0"; -void apic_format_redir (where1, where2, idx, redirhi, redirlo) +void +apic_format_redir(where1, where2, idx, redirhi, redirlo) char *where1; char *where2; int idx; diff --git a/sys/arch/x86/x86/cacheinfo.c b/sys/arch/x86/x86/cacheinfo.c index 01479522b8ac..7e2c02caf1b2 100644 --- a/sys/arch/x86/x86/cacheinfo.c +++ b/sys/arch/x86/x86/cacheinfo.c @@ -1,4 +1,4 @@ -/* $NetBSD: cacheinfo.c,v 1.2 2003/05/14 12:22:34 fvdl Exp $ */ +/* $NetBSD: cacheinfo.c,v 1.3 2003/07/14 22:32:39 lukem Exp $ */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -36,6 +36,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include +__KERNEL_RCSID(0, "$NetBSD: cacheinfo.c,v 1.3 2003/07/14 22:32:39 lukem Exp $"); + #include #include #include diff --git a/sys/arch/x86/x86/i8259.c b/sys/arch/x86/x86/i8259.c index bc6b385a0c76..cbb2c258ecc6 100644 --- a/sys/arch/x86/x86/i8259.c +++ b/sys/arch/x86/x86/i8259.c @@ -1,4 +1,4 @@ -/* $NetBSD: i8259.c,v 1.2 2003/03/02 18:27:15 fvdl Exp $ */ +/* $NetBSD: i8259.c,v 1.3 2003/07/14 22:32:39 lukem Exp $ */ /* * Copyright 2002 (c) Wasabi Systems, Inc. @@ -73,6 +73,9 @@ * @(#)isa.c 7.2 (Berkeley) 5/13/91 */ +#include +__KERNEL_RCSID(0, "$NetBSD: i8259.c,v 1.3 2003/07/14 22:32:39 lukem Exp $"); + #include #include #include diff --git a/sys/arch/x86/x86/intr.c b/sys/arch/x86/x86/intr.c index 98e78e7f4527..db7999625720 100644 --- a/sys/arch/x86/x86/intr.c +++ b/sys/arch/x86/x86/intr.c @@ -1,4 +1,4 @@ -/* $NetBSD: intr.c,v 1.3 2003/03/03 22:16:20 fvdl Exp $ */ +/* $NetBSD: intr.c,v 1.4 2003/07/14 22:32:39 lukem Exp $ */ /* * Copyright 2002 (c) Wasabi Systems, Inc. @@ -35,6 +35,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include +__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.4 2003/07/14 22:32:39 lukem Exp $"); + #include "opt_multiprocessor.h" #include diff --git a/sys/arch/x86/x86/ioapic.c b/sys/arch/x86/x86/ioapic.c index c81bb4791184..d79d7319d161 100644 --- a/sys/arch/x86/x86/ioapic.c +++ b/sys/arch/x86/x86/ioapic.c @@ -1,4 +1,4 @@ -/* $NetBSD: ioapic.c,v 1.6 2003/05/15 13:30:31 fvdl Exp $ */ +/* $NetBSD: ioapic.c,v 1.7 2003/07/14 22:32:40 lukem Exp $ */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -70,7 +70,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ + +#include +__KERNEL_RCSID(0, "$NetBSD: ioapic.c,v 1.7 2003/07/14 22:32:40 lukem Exp $"); + #include "opt_ddb.h" + #include #include #include diff --git a/sys/arch/x86/x86/ipi.c b/sys/arch/x86/x86/ipi.c index 7735d3197ce3..1f00b4e84b0f 100644 --- a/sys/arch/x86/x86/ipi.c +++ b/sys/arch/x86/x86/ipi.c @@ -1,4 +1,4 @@ -/* $NetBSD: ipi.c,v 1.2 2003/03/01 13:05:37 fvdl Exp $ */ +/* $NetBSD: ipi.c,v 1.3 2003/07/14 22:32:40 lukem Exp $ */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -38,7 +38,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include /* RCS ID & Copyright macro defns */ +#include +__KERNEL_RCSID(0, "$NetBSD: ipi.c,v 1.3 2003/07/14 22:32:40 lukem Exp $"); #include #include diff --git a/sys/arch/x86/x86/lapic.c b/sys/arch/x86/x86/lapic.c index 12fcc7aa3b7d..1a524fbbc1cd 100644 --- a/sys/arch/x86/x86/lapic.c +++ b/sys/arch/x86/x86/lapic.c @@ -1,4 +1,4 @@ -/* $NetBSD: lapic.c,v 1.2 2003/05/08 01:04:35 fvdl Exp $ */ +/* $NetBSD: lapic.c,v 1.3 2003/07/14 22:32:40 lukem Exp $ */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -38,6 +38,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include +__KERNEL_RCSID(0, "$NetBSD: lapic.c,v 1.3 2003/07/14 22:32:40 lukem Exp $"); #include "opt_ddb.h" #include "opt_multiprocessor.h" diff --git a/sys/arch/x86/x86/lock_machdep.c b/sys/arch/x86/x86/lock_machdep.c index 1c233d91db98..e377fcfd7237 100644 --- a/sys/arch/x86/x86/lock_machdep.c +++ b/sys/arch/x86/x86/lock_machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: lock_machdep.c,v 1.1 2003/03/01 22:55:02 fvdl Exp $ */ +/* $NetBSD: lock_machdep.c,v 1.2 2003/07/14 22:32:40 lukem Exp $ */ /*- * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc. @@ -38,6 +38,7 @@ */ #include /* RCS ID & Copyright macro defns */ +__KERNEL_RCSID(0, "$NetBSD: lock_machdep.c,v 1.2 2003/07/14 22:32:40 lukem Exp $"); /* * Machine-dependent spin lock operations. diff --git a/sys/arch/x86/x86/mpacpi.c b/sys/arch/x86/x86/mpacpi.c index 6d0a8fc80d0b..6c05a23fef84 100644 --- a/sys/arch/x86/x86/mpacpi.c +++ b/sys/arch/x86/x86/mpacpi.c @@ -1,4 +1,4 @@ -/* $NetBSD: mpacpi.c,v 1.6 2003/06/01 19:14:20 fvdl Exp $ */ +/* $NetBSD: mpacpi.c,v 1.7 2003/07/14 22:32:40 lukem Exp $ */ /* * Copyright (c) 2003 Wasabi Systems, Inc. @@ -35,6 +35,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include +__KERNEL_RCSID(0, "$NetBSD: mpacpi.c,v 1.7 2003/07/14 22:32:40 lukem Exp $"); + #include "opt_acpi.h" #include "opt_mpbios.h" diff --git a/sys/arch/x86/x86/mpbios.c b/sys/arch/x86/x86/mpbios.c index 584f1c80f188..1f80a3c0ed6e 100644 --- a/sys/arch/x86/x86/mpbios.c +++ b/sys/arch/x86/x86/mpbios.c @@ -1,4 +1,4 @@ -/* $NetBSD: mpbios.c,v 1.9 2003/06/01 19:14:21 fvdl Exp $ */ +/* $NetBSD: mpbios.c,v 1.10 2003/07/14 22:32:40 lukem Exp $ */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -102,6 +102,9 @@ * so only Intel MP specific stuff is here. */ +#include +__KERNEL_RCSID(0, "$NetBSD: mpbios.c,v 1.10 2003/07/14 22:32:40 lukem Exp $"); + #include "opt_mpbios.h" #include