diff options
Diffstat (limited to 'sys/dev')
119 files changed, 331 insertions, 14 deletions
diff --git a/sys/dev/acpi/acpi.c b/sys/dev/acpi/acpi.c index 72f78a53f66..a6dea3742ab 100644 --- a/sys/dev/acpi/acpi.c +++ b/sys/dev/acpi/acpi.c @@ -1,4 +1,4 @@ -/* $NetBSD: acpi.c,v 1.4 2001/09/29 18:13:48 thorpej Exp $ */ +/* $NetBSD: acpi.c,v 1.5 2001/11/13 13:01:57 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -40,6 +40,9 @@ * ACPI reference implementation. */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: acpi.c,v 1.5 2001/11/13 13:01:57 lukem Exp $"); + #include <sys/param.h> #include <sys/systm.h> #include <sys/device.h> diff --git a/sys/dev/acpi/acpi_acad.c b/sys/dev/acpi/acpi_acad.c index 1807bb7e06c..aa451ed0bdd 100644 --- a/sys/dev/acpi/acpi_acad.c +++ b/sys/dev/acpi/acpi_acad.c @@ -1,4 +1,4 @@ -/* $NetBSD: acpi_acad.c,v 1.1 2001/09/29 05:35:06 thorpej Exp $ */ +/* $NetBSD: acpi_acad.c,v 1.2 2001/11/13 13:01:57 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -39,6 +39,9 @@ * ACPI AC Adapter driver. */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: acpi_acad.c,v 1.2 2001/11/13 13:01:57 lukem Exp $"); + #include <sys/param.h> #include <sys/systm.h> #include <sys/device.h> diff --git a/sys/dev/acpi/acpi_button.c b/sys/dev/acpi/acpi_button.c index 54d2df22fd0..ea32c704ee1 100644 --- a/sys/dev/acpi/acpi_button.c +++ b/sys/dev/acpi/acpi_button.c @@ -1,4 +1,4 @@ -/* $NetBSD: acpi_button.c,v 1.1 2001/09/28 02:30:13 thorpej Exp $ */ +/* $NetBSD: acpi_button.c,v 1.2 2001/11/13 13:01:57 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -39,6 +39,9 @@ * ACPI Button driver. */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: acpi_button.c,v 1.2 2001/11/13 13:01:57 lukem Exp $"); + #include <sys/param.h> #include <sys/systm.h> #include <sys/device.h> diff --git a/sys/dev/acpi/acpi_ec.c b/sys/dev/acpi/acpi_ec.c index 7186be1152f..cedbd1352ac 100644 --- a/sys/dev/acpi/acpi_ec.c +++ b/sys/dev/acpi/acpi_ec.c @@ -1,4 +1,4 @@ -/* $NetBSD: acpi_ec.c,v 1.2 2001/10/12 07:30:23 enami Exp $ */ +/* $NetBSD: acpi_ec.c,v 1.3 2001/11/13 13:01:57 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -171,6 +171,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: acpi_ec.c,v 1.3 2001/11/13 13:01:57 lukem Exp $"); + #include <sys/param.h> #include <sys/systm.h> #include <sys/device.h> diff --git a/sys/dev/acpi/acpi_lid.c b/sys/dev/acpi/acpi_lid.c index c09cf0899ad..7535da3ca2f 100644 --- a/sys/dev/acpi/acpi_lid.c +++ b/sys/dev/acpi/acpi_lid.c @@ -1,4 +1,4 @@ -/* $NetBSD: acpi_lid.c,v 1.2 2001/09/29 05:36:49 thorpej Exp $ */ +/* $NetBSD: acpi_lid.c,v 1.3 2001/11/13 13:01:57 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -39,6 +39,9 @@ * ACPI Lid Switch driver. */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: acpi_lid.c,v 1.3 2001/11/13 13:01:57 lukem Exp $"); + #include <sys/param.h> #include <sys/systm.h> #include <sys/device.h> diff --git a/sys/dev/acpi/acpi_resource.c b/sys/dev/acpi/acpi_resource.c index 46c9b13e5c7..2995556989c 100644 --- a/sys/dev/acpi/acpi_resource.c +++ b/sys/dev/acpi/acpi_resource.c @@ -1,4 +1,4 @@ -/* $NetBSD: acpi_resource.c,v 1.1 2001/09/29 05:34:00 thorpej Exp $ */ +/* $NetBSD: acpi_resource.c,v 1.2 2001/11/13 13:01:57 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -66,6 +66,9 @@ * ACPI resource parsing. */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: acpi_resource.c,v 1.2 2001/11/13 13:01:57 lukem Exp $"); + #include <sys/param.h> #include <sys/systm.h> #include <sys/device.h> diff --git a/sys/dev/acpi/acpica/Osd/OsdEnvironment.c b/sys/dev/acpi/acpica/Osd/OsdEnvironment.c index 572826d3b05..ff08f95e347 100644 --- a/sys/dev/acpi/acpica/Osd/OsdEnvironment.c +++ b/sys/dev/acpi/acpica/Osd/OsdEnvironment.c @@ -1,4 +1,4 @@ -/* $NetBSD: OsdEnvironment.c,v 1.1 2001/09/28 01:06:58 thorpej Exp $ */ +/* $NetBSD: OsdEnvironment.c,v 1.2 2001/11/13 13:01:58 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -41,6 +41,9 @@ * 6.1: Environmental support. */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: OsdEnvironment.c,v 1.2 2001/11/13 13:01:58 lukem Exp $"); + #include <sys/types.h> #include <dev/acpi/acpica.h> diff --git a/sys/dev/acpi/acpica/Osd/OsdHardware.c b/sys/dev/acpi/acpica/Osd/OsdHardware.c index 4f526246d99..d5ff77b261f 100644 --- a/sys/dev/acpi/acpica/Osd/OsdHardware.c +++ b/sys/dev/acpi/acpica/Osd/OsdHardware.c @@ -1,4 +1,4 @@ -/* $NetBSD: OsdHardware.c,v 1.1 2001/09/28 01:06:58 thorpej Exp $ */ +/* $NetBSD: OsdHardware.c,v 1.2 2001/11/13 13:01:58 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -43,6 +43,9 @@ * 6.9: Address Space Access: PCI Configuration Space */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: OsdHardware.c,v 1.2 2001/11/13 13:01:58 lukem Exp $"); + #include <sys/param.h> #include <sys/device.h> diff --git a/sys/dev/acpi/acpica/Osd/OsdInterrupt.c b/sys/dev/acpi/acpica/Osd/OsdInterrupt.c index 3b6f82e7dbd..95a521a3a07 100644 --- a/sys/dev/acpi/acpica/Osd/OsdInterrupt.c +++ b/sys/dev/acpi/acpica/Osd/OsdInterrupt.c @@ -1,4 +1,4 @@ -/* $NetBSD: OsdInterrupt.c,v 1.1 2001/09/28 01:06:58 thorpej Exp $ */ +/* $NetBSD: OsdInterrupt.c,v 1.2 2001/11/13 13:01:58 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -41,6 +41,9 @@ * 6.5: Interrupt Handling */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: OsdInterrupt.c,v 1.2 2001/11/13 13:01:58 lukem Exp $"); + #include <sys/param.h> #include <sys/malloc.h> #include <sys/lock.h> diff --git a/sys/dev/acpi/acpica/Osd/OsdMemory.c b/sys/dev/acpi/acpica/Osd/OsdMemory.c index c01d5284cbe..9fc5a93fb7f 100644 --- a/sys/dev/acpi/acpica/Osd/OsdMemory.c +++ b/sys/dev/acpi/acpica/Osd/OsdMemory.c @@ -1,4 +1,4 @@ -/* $NetBSD: OsdMemory.c,v 1.1 2001/09/28 01:06:58 thorpej Exp $ */ +/* $NetBSD: OsdMemory.c,v 1.2 2001/11/13 13:01:58 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -41,6 +41,9 @@ * 6.2: Memory management. */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: OsdMemory.c,v 1.2 2001/11/13 13:01:58 lukem Exp $"); + #include <sys/param.h> #include <sys/malloc.h> diff --git a/sys/dev/acpi/acpica/Osd/OsdMisc.c b/sys/dev/acpi/acpica/Osd/OsdMisc.c index 23ba0f940ac..4b481a08c43 100644 --- a/sys/dev/acpi/acpica/Osd/OsdMisc.c +++ b/sys/dev/acpi/acpica/Osd/OsdMisc.c @@ -1,4 +1,4 @@ -/* $NetBSD: OsdMisc.c,v 1.1 2001/09/28 01:06:58 thorpej Exp $ */ +/* $NetBSD: OsdMisc.c,v 1.2 2001/11/13 13:01:58 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -41,6 +41,9 @@ * 6.10: Miscellaneous */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: OsdMisc.c,v 1.2 2001/11/13 13:01:58 lukem Exp $"); + #include "opt_ddb.h" #include <sys/param.h> diff --git a/sys/dev/acpi/acpica/Osd/OsdSchedule.c b/sys/dev/acpi/acpica/Osd/OsdSchedule.c index b5d060d7a66..52258f01a30 100644 --- a/sys/dev/acpi/acpica/Osd/OsdSchedule.c +++ b/sys/dev/acpi/acpica/Osd/OsdSchedule.c @@ -1,4 +1,4 @@ -/* $NetBSD: OsdSchedule.c,v 1.1 2001/09/28 01:06:59 thorpej Exp $ */ +/* $NetBSD: OsdSchedule.c,v 1.2 2001/11/13 13:01:58 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -41,6 +41,9 @@ * 6.3: Scheduling services */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: OsdSchedule.c,v 1.2 2001/11/13 13:01:58 lukem Exp $"); + #include <sys/param.h> #include <sys/malloc.h> #include <sys/lock.h> diff --git a/sys/dev/acpi/acpica/Osd/OsdStream.c b/sys/dev/acpi/acpica/Osd/OsdStream.c index d5aa5e3dfcc..54be5058bd7 100644 --- a/sys/dev/acpi/acpica/Osd/OsdStream.c +++ b/sys/dev/acpi/acpica/Osd/OsdStream.c @@ -1,4 +1,4 @@ -/* $NetBSD: OsdStream.c,v 1.1 2001/09/28 01:06:59 thorpej Exp $ */ +/* $NetBSD: OsdStream.c,v 1.2 2001/11/13 13:01:58 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -41,6 +41,9 @@ * 6.6: Stream I/O */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: OsdStream.c,v 1.2 2001/11/13 13:01:58 lukem Exp $"); + #include <sys/types.h> #include <sys/systm.h> diff --git a/sys/dev/acpi/acpica/Osd/OsdSynch.c b/sys/dev/acpi/acpica/Osd/OsdSynch.c index 016ba126c33..c16f9ab6608 100644 --- a/sys/dev/acpi/acpica/Osd/OsdSynch.c +++ b/sys/dev/acpi/acpica/Osd/OsdSynch.c @@ -1,4 +1,4 @@ -/* $NetBSD: OsdSynch.c,v 1.1 2001/09/28 01:06:59 thorpej Exp $ */ +/* $NetBSD: OsdSynch.c,v 1.2 2001/11/13 13:01:58 lukem Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -68,6 +68,9 @@ * 6.4: Mutual Exclusion and Synchronization */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: OsdSynch.c,v 1.2 2001/11/13 13:01:58 lukem Exp $"); + #include <sys/param.h> #include <sys/malloc.h> #include <sys/lock.h> diff --git a/sys/dev/acpi/acpica/Subsystem/dbcmds.c b/sys/dev/acpi/acpica/Subsystem/dbcmds.c index 5a6eef0aff2..3511ed98bf6 100644 --- a/sys/dev/acpi/acpica/Subsystem/dbcmds.c +++ b/sys/dev/acpi/acpica/Subsystem/dbcmds.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dbcmds.c,v 1.3 2001/11/13 13:01:58 lukem Exp $"); #include "acpi.h" #include "acparser.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dbdisasm.c b/sys/dev/acpi/acpica/Subsystem/dbdisasm.c index bdcbb4eee6e..ec27dea71fc 100644 --- a/sys/dev/acpi/acpica/Subsystem/dbdisasm.c +++ b/sys/dev/acpi/acpica/Subsystem/dbdisasm.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dbdisasm.c,v 1.3 2001/11/13 13:01:58 lukem Exp $"); #include "acpi.h" #include "acparser.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dbdisply.c b/sys/dev/acpi/acpica/Subsystem/dbdisply.c index b924e6945ae..b422f5ee2fa 100644 --- a/sys/dev/acpi/acpica/Subsystem/dbdisply.c +++ b/sys/dev/acpi/acpica/Subsystem/dbdisply.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dbdisply.c,v 1.3 2001/11/13 13:01:58 lukem Exp $"); #include "acpi.h" #include "acparser.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dbexec.c b/sys/dev/acpi/acpica/Subsystem/dbexec.c index 99979ac7f34..e986cc42c59 100644 --- a/sys/dev/acpi/acpica/Subsystem/dbexec.c +++ b/sys/dev/acpi/acpica/Subsystem/dbexec.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dbexec.c,v 1.3 2001/11/13 13:01:58 lukem Exp $"); #include "acpi.h" #include "acparser.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dbfileio.c b/sys/dev/acpi/acpica/Subsystem/dbfileio.c index 5bc73ff4c60..f6758812ec3 100644 --- a/sys/dev/acpi/acpica/Subsystem/dbfileio.c +++ b/sys/dev/acpi/acpica/Subsystem/dbfileio.c @@ -115,6 +115,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dbfileio.c,v 1.3 2001/11/13 13:01:58 lukem Exp $"); #include "acpi.h" #include "acdebug.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dbhistry.c b/sys/dev/acpi/acpica/Subsystem/dbhistry.c index 9c7cd752a30..1f0a882b485 100644 --- a/sys/dev/acpi/acpica/Subsystem/dbhistry.c +++ b/sys/dev/acpi/acpica/Subsystem/dbhistry.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dbhistry.c,v 1.2 2001/11/13 13:01:58 lukem Exp $"); #include "acpi.h" #include "acparser.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dbinput.c b/sys/dev/acpi/acpica/Subsystem/dbinput.c index 56cb5367644..600c5ca6d91 100644 --- a/sys/dev/acpi/acpica/Subsystem/dbinput.c +++ b/sys/dev/acpi/acpica/Subsystem/dbinput.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dbinput.c,v 1.3 2001/11/13 13:01:58 lukem Exp $"); #include "acpi.h" #include "acparser.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dbstats.c b/sys/dev/acpi/acpica/Subsystem/dbstats.c index 022c0f58923..7623cb857b4 100644 --- a/sys/dev/acpi/acpica/Subsystem/dbstats.c +++ b/sys/dev/acpi/acpica/Subsystem/dbstats.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dbstats.c,v 1.4 2001/11/13 13:01:58 lukem Exp $"); #include "acpi.h" #include "acdebug.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dbutils.c b/sys/dev/acpi/acpica/Subsystem/dbutils.c index d34a3194e44..3e4ddca4f8a 100644 --- a/sys/dev/acpi/acpica/Subsystem/dbutils.c +++ b/sys/dev/acpi/acpica/Subsystem/dbutils.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dbutils.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); #include "acpi.h" #include "acparser.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dbxface.c b/sys/dev/acpi/acpica/Subsystem/dbxface.c index aa0bdc446f5..5be6c8b6e6b 100644 --- a/sys/dev/acpi/acpica/Subsystem/dbxface.c +++ b/sys/dev/acpi/acpica/Subsystem/dbxface.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dbxface.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); #include "acpi.h" #include "acparser.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dsfield.c b/sys/dev/acpi/acpica/Subsystem/dsfield.c index 0ed53703c0d..ec99536d2af 100644 --- a/sys/dev/acpi/acpica/Subsystem/dsfield.c +++ b/sys/dev/acpi/acpica/Subsystem/dsfield.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dsfield.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #define __DSFIELD_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dsmethod.c b/sys/dev/acpi/acpica/Subsystem/dsmethod.c index f492b9989f4..e53cf8efc0f 100644 --- a/sys/dev/acpi/acpica/Subsystem/dsmethod.c +++ b/sys/dev/acpi/acpica/Subsystem/dsmethod.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dsmethod.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #define __DSMETHOD_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dsmthdat.c b/sys/dev/acpi/acpica/Subsystem/dsmthdat.c index 0b479c5cab5..5494d05f3b9 100644 --- a/sys/dev/acpi/acpica/Subsystem/dsmthdat.c +++ b/sys/dev/acpi/acpica/Subsystem/dsmthdat.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dsmthdat.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #define __DSMTHDAT_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dsobject.c b/sys/dev/acpi/acpica/Subsystem/dsobject.c index 79724958d07..c19b5c78b87 100644 --- a/sys/dev/acpi/acpica/Subsystem/dsobject.c +++ b/sys/dev/acpi/acpica/Subsystem/dsobject.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dsobject.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #define __DSOBJECT_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dsopcode.c b/sys/dev/acpi/acpica/Subsystem/dsopcode.c index 083a98e3841..124bb5c2a7f 100644 --- a/sys/dev/acpi/acpica/Subsystem/dsopcode.c +++ b/sys/dev/acpi/acpica/Subsystem/dsopcode.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dsopcode.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #define __DSOPCODE_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dsutils.c b/sys/dev/acpi/acpica/Subsystem/dsutils.c index e3563a6578e..cb872139f5f 100644 --- a/sys/dev/acpi/acpica/Subsystem/dsutils.c +++ b/sys/dev/acpi/acpica/Subsystem/dsutils.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dsutils.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #define __DSUTILS_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dswexec.c b/sys/dev/acpi/acpica/Subsystem/dswexec.c index 9d23931259e..962407349a5 100644 --- a/sys/dev/acpi/acpica/Subsystem/dswexec.c +++ b/sys/dev/acpi/acpica/Subsystem/dswexec.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dswexec.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #define __DSWEXEC_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dswload.c b/sys/dev/acpi/acpica/Subsystem/dswload.c index 0812428c505..11782f77e56 100644 --- a/sys/dev/acpi/acpica/Subsystem/dswload.c +++ b/sys/dev/acpi/acpica/Subsystem/dswload.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dswload.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #define __DSWLOAD_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dswscope.c b/sys/dev/acpi/acpica/Subsystem/dswscope.c index ad92114d142..ecb838200a3 100644 --- a/sys/dev/acpi/acpica/Subsystem/dswscope.c +++ b/sys/dev/acpi/acpica/Subsystem/dswscope.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dswscope.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #define __DSWSCOPE_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/dswstate.c b/sys/dev/acpi/acpica/Subsystem/dswstate.c index f3e96087e95..18c9d96a270 100644 --- a/sys/dev/acpi/acpica/Subsystem/dswstate.c +++ b/sys/dev/acpi/acpica/Subsystem/dswstate.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: dswstate.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); #define __DSWSTATE_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/evevent.c b/sys/dev/acpi/acpica/Subsystem/evevent.c index a4cb84e06ec..475ba17f2f1 100644 --- a/sys/dev/acpi/acpica/Subsystem/evevent.c +++ b/sys/dev/acpi/acpica/Subsystem/evevent.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: evevent.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #include "acpi.h" #include "achware.h" #include "acevents.h" diff --git a/sys/dev/acpi/acpica/Subsystem/evmisc.c b/sys/dev/acpi/acpica/Subsystem/evmisc.c index d0dfaea7a5a..aa983a230c4 100644 --- a/sys/dev/acpi/acpica/Subsystem/evmisc.c +++ b/sys/dev/acpi/acpica/Subsystem/evmisc.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: evmisc.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #include "acpi.h" #include "acevents.h" #include "acnamesp.h" diff --git a/sys/dev/acpi/acpica/Subsystem/evregion.c b/sys/dev/acpi/acpica/Subsystem/evregion.c index 1e84b789ed6..868bc56465f 100644 --- a/sys/dev/acpi/acpica/Subsystem/evregion.c +++ b/sys/dev/acpi/acpica/Subsystem/evregion.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: evregion.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); #define __EVREGION_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/evrgnini.c b/sys/dev/acpi/acpica/Subsystem/evrgnini.c index 064cb5db918..2d493a6cb79 100644 --- a/sys/dev/acpi/acpica/Subsystem/evrgnini.c +++ b/sys/dev/acpi/acpica/Subsystem/evrgnini.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: evrgnini.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); #define __EVRGNINI_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/evsci.c b/sys/dev/acpi/acpica/Subsystem/evsci.c index 3efda356350..a0b4a70dab3 100644 --- a/sys/dev/acpi/acpica/Subsystem/evsci.c +++ b/sys/dev/acpi/acpica/Subsystem/evsci.c @@ -116,6 +116,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: evsci.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #include "acpi.h" #include "acnamesp.h" #include "achware.h" diff --git a/sys/dev/acpi/acpica/Subsystem/evxface.c b/sys/dev/acpi/acpica/Subsystem/evxface.c index 2ca0d947490..c01db674d48 100644 --- a/sys/dev/acpi/acpica/Subsystem/evxface.c +++ b/sys/dev/acpi/acpica/Subsystem/evxface.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: evxface.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); #define __EVXFACE_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/evxfevnt.c b/sys/dev/acpi/acpica/Subsystem/evxfevnt.c index 52f7f198d39..d0a89c833ad 100644 --- a/sys/dev/acpi/acpica/Subsystem/evxfevnt.c +++ b/sys/dev/acpi/acpica/Subsystem/evxfevnt.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: evxfevnt.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); #define __EVXFEVNT_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/evxfregn.c b/sys/dev/acpi/acpica/Subsystem/evxfregn.c index 8eb9db43ab1..24fba45a664 100644 --- a/sys/dev/acpi/acpica/Subsystem/evxfregn.c +++ b/sys/dev/acpi/acpica/Subsystem/evxfregn.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: evxfregn.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #define __EVXFREGN_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exconfig.c b/sys/dev/acpi/acpica/Subsystem/exconfig.c index 9ec353b76a7..65da40b64fe 100644 --- a/sys/dev/acpi/acpica/Subsystem/exconfig.c +++ b/sys/dev/acpi/acpica/Subsystem/exconfig.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exconfig.c,v 1.2 2001/11/13 13:01:59 lukem Exp $"); + #define __EXCONFIG_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exconvrt.c b/sys/dev/acpi/acpica/Subsystem/exconvrt.c index 412021b22af..2fa0a2efb62 100644 --- a/sys/dev/acpi/acpica/Subsystem/exconvrt.c +++ b/sys/dev/acpi/acpica/Subsystem/exconvrt.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exconvrt.c,v 1.3 2001/11/13 13:01:59 lukem Exp $"); #define __EXCONVRT_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/excreate.c b/sys/dev/acpi/acpica/Subsystem/excreate.c index 3d172fc7889..3aeddba7c9f 100644 --- a/sys/dev/acpi/acpica/Subsystem/excreate.c +++ b/sys/dev/acpi/acpica/Subsystem/excreate.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: excreate.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXCREATE_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exdump.c b/sys/dev/acpi/acpica/Subsystem/exdump.c index ac4a25f8be5..ada466aa649 100644 --- a/sys/dev/acpi/acpica/Subsystem/exdump.c +++ b/sys/dev/acpi/acpica/Subsystem/exdump.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exdump.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXDUMP_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exdyadic.c b/sys/dev/acpi/acpica/Subsystem/exdyadic.c index 95405c02f39..60764d432a2 100644 --- a/sys/dev/acpi/acpica/Subsystem/exdyadic.c +++ b/sys/dev/acpi/acpica/Subsystem/exdyadic.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exdyadic.c,v 1.3 2001/11/13 13:02:00 lukem Exp $"); #define __EXDYADIC_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/exfield.c b/sys/dev/acpi/acpica/Subsystem/exfield.c index 010c67b4317..d4710017f5c 100644 --- a/sys/dev/acpi/acpica/Subsystem/exfield.c +++ b/sys/dev/acpi/acpica/Subsystem/exfield.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exfield.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); #define __EXFIELD_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/exfldio.c b/sys/dev/acpi/acpica/Subsystem/exfldio.c index f833225ee15..9288b4bbc6a 100644 --- a/sys/dev/acpi/acpica/Subsystem/exfldio.c +++ b/sys/dev/acpi/acpica/Subsystem/exfldio.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exfldio.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); #define __EXFLDIO_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/exmisc.c b/sys/dev/acpi/acpica/Subsystem/exmisc.c index 9a0c3c5caa4..e07413cb81f 100644 --- a/sys/dev/acpi/acpica/Subsystem/exmisc.c +++ b/sys/dev/acpi/acpica/Subsystem/exmisc.c @@ -116,6 +116,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exmisc.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXMISC_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exmonad.c b/sys/dev/acpi/acpica/Subsystem/exmonad.c index 67c3f877e86..ebf4c30888e 100644 --- a/sys/dev/acpi/acpica/Subsystem/exmonad.c +++ b/sys/dev/acpi/acpica/Subsystem/exmonad.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exmonad.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXMONAD_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exmutex.c b/sys/dev/acpi/acpica/Subsystem/exmutex.c index a87acdec384..701d666fc3f 100644 --- a/sys/dev/acpi/acpica/Subsystem/exmutex.c +++ b/sys/dev/acpi/acpica/Subsystem/exmutex.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exmutex.c,v 1.3 2001/11/13 13:02:00 lukem Exp $"); + #define __EXMUTEX_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exnames.c b/sys/dev/acpi/acpica/Subsystem/exnames.c index 1178565c3da..86c1b7aa2ab 100644 --- a/sys/dev/acpi/acpica/Subsystem/exnames.c +++ b/sys/dev/acpi/acpica/Subsystem/exnames.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exnames.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXNAMES_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exprep.c b/sys/dev/acpi/acpica/Subsystem/exprep.c index dee4fe53fb4..6e9782bc98d 100644 --- a/sys/dev/acpi/acpica/Subsystem/exprep.c +++ b/sys/dev/acpi/acpica/Subsystem/exprep.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exprep.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXPREP_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exregion.c b/sys/dev/acpi/acpica/Subsystem/exregion.c index 06306e55ea8..cfcbd4138b2 100644 --- a/sys/dev/acpi/acpica/Subsystem/exregion.c +++ b/sys/dev/acpi/acpica/Subsystem/exregion.c @@ -115,6 +115,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exregion.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); #define __EXREGION_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/exresnte.c b/sys/dev/acpi/acpica/Subsystem/exresnte.c index 5be2b6f93f2..30571fa15a3 100644 --- a/sys/dev/acpi/acpica/Subsystem/exresnte.c +++ b/sys/dev/acpi/acpica/Subsystem/exresnte.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exresnte.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXRESNTE_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exresolv.c b/sys/dev/acpi/acpica/Subsystem/exresolv.c index d7674645057..79dd6783048 100644 --- a/sys/dev/acpi/acpica/Subsystem/exresolv.c +++ b/sys/dev/acpi/acpica/Subsystem/exresolv.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exresolv.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXRESOLV_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exresop.c b/sys/dev/acpi/acpica/Subsystem/exresop.c index e57142604a5..ea06250c063 100644 --- a/sys/dev/acpi/acpica/Subsystem/exresop.c +++ b/sys/dev/acpi/acpica/Subsystem/exresop.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exresop.c,v 1.3 2001/11/13 13:02:00 lukem Exp $"); + #define __EXRESOP_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exstore.c b/sys/dev/acpi/acpica/Subsystem/exstore.c index d6bdace1441..96bb738055e 100644 --- a/sys/dev/acpi/acpica/Subsystem/exstore.c +++ b/sys/dev/acpi/acpica/Subsystem/exstore.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exstore.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXSTORE_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exstoren.c b/sys/dev/acpi/acpica/Subsystem/exstoren.c index 980e20f842f..706ba563a92 100644 --- a/sys/dev/acpi/acpica/Subsystem/exstoren.c +++ b/sys/dev/acpi/acpica/Subsystem/exstoren.c @@ -116,6 +116,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exstoren.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXSTOREN_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exstorob.c b/sys/dev/acpi/acpica/Subsystem/exstorob.c index fc893ab6d14..8737bb256f1 100644 --- a/sys/dev/acpi/acpica/Subsystem/exstorob.c +++ b/sys/dev/acpi/acpica/Subsystem/exstorob.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exstorob.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXSTOROB_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exsystem.c b/sys/dev/acpi/acpica/Subsystem/exsystem.c index a77478f788f..d6c7708d6ec 100644 --- a/sys/dev/acpi/acpica/Subsystem/exsystem.c +++ b/sys/dev/acpi/acpica/Subsystem/exsystem.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exsystem.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXSYSTEM_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/exutils.c b/sys/dev/acpi/acpica/Subsystem/exutils.c index de6c6019479..f16254883b4 100644 --- a/sys/dev/acpi/acpica/Subsystem/exutils.c +++ b/sys/dev/acpi/acpica/Subsystem/exutils.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exutils.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXUTILS_C__ /* diff --git a/sys/dev/acpi/acpica/Subsystem/exxface.c b/sys/dev/acpi/acpica/Subsystem/exxface.c index 1b689184e9f..a97f73a6578 100644 --- a/sys/dev/acpi/acpica/Subsystem/exxface.c +++ b/sys/dev/acpi/acpica/Subsystem/exxface.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: exxface.c,v 1.2 2001/11/13 13:02:00 lukem Exp $"); + #define __EXXFACE_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/hwacpi.c b/sys/dev/acpi/acpica/Subsystem/hwacpi.c index 7f96410275b..3a5d7d94e37 100644 --- a/sys/dev/acpi/acpica/Subsystem/hwacpi.c +++ b/sys/dev/acpi/acpica/Subsystem/hwacpi.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: hwacpi.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #define __HWACPI_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/hwgpe.c b/sys/dev/acpi/acpica/Subsystem/hwgpe.c index 2d919c29cd6..d87ea3fb2a6 100644 --- a/sys/dev/acpi/acpica/Subsystem/hwgpe.c +++ b/sys/dev/acpi/acpica/Subsystem/hwgpe.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: hwgpe.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #include "acpi.h" #include "achware.h" #include "acnamesp.h" diff --git a/sys/dev/acpi/acpica/Subsystem/hwregs.c b/sys/dev/acpi/acpica/Subsystem/hwregs.c index 8cc0d1499b2..1b033b38b09 100644 --- a/sys/dev/acpi/acpica/Subsystem/hwregs.c +++ b/sys/dev/acpi/acpica/Subsystem/hwregs.c @@ -116,6 +116,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: hwregs.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #define __HWREGS_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/hwsleep.c b/sys/dev/acpi/acpica/Subsystem/hwsleep.c index 018b15e7273..8718c6319b1 100644 --- a/sys/dev/acpi/acpica/Subsystem/hwsleep.c +++ b/sys/dev/acpi/acpica/Subsystem/hwsleep.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: hwsleep.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #include "acpi.h" #include "acnamesp.h" #include "achware.h" diff --git a/sys/dev/acpi/acpica/Subsystem/hwtimer.c b/sys/dev/acpi/acpica/Subsystem/hwtimer.c index 5fed74bfb7d..7b785d348e5 100644 --- a/sys/dev/acpi/acpica/Subsystem/hwtimer.c +++ b/sys/dev/acpi/acpica/Subsystem/hwtimer.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: hwtimer.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #include "acpi.h" #include "achware.h" diff --git a/sys/dev/acpi/acpica/Subsystem/nsaccess.c b/sys/dev/acpi/acpica/Subsystem/nsaccess.c index 8cab7f58c7a..cd7ed3dbdbc 100644 --- a/sys/dev/acpi/acpica/Subsystem/nsaccess.c +++ b/sys/dev/acpi/acpica/Subsystem/nsaccess.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: nsaccess.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #define __NSACCESS_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/nsalloc.c b/sys/dev/acpi/acpica/Subsystem/nsalloc.c index 2a17f23f708..f2be40dde45 100644 --- a/sys/dev/acpi/acpica/Subsystem/nsalloc.c +++ b/sys/dev/acpi/acpica/Subsystem/nsalloc.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: nsalloc.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); #define __NSALLOC_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/nsdump.c b/sys/dev/acpi/acpica/Subsystem/nsdump.c index 24559840b76..876240acc86 100644 --- a/sys/dev/acpi/acpica/Subsystem/nsdump.c +++ b/sys/dev/acpi/acpica/Subsystem/nsdump.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: nsdump.c,v 1.3 2001/11/13 13:02:01 lukem Exp $"); + #define __NSDUMP_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/nseval.c b/sys/dev/acpi/acpica/Subsystem/nseval.c index 54df164b61d..f406faba6d4 100644 --- a/sys/dev/acpi/acpica/Subsystem/nseval.c +++ b/sys/dev/acpi/acpica/Subsystem/nseval.c @@ -116,6 +116,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: nseval.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #define __NSEVAL_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/nsinit.c b/sys/dev/acpi/acpica/Subsystem/nsinit.c index a39e92ada8d..0bcbb84449c 100644 --- a/sys/dev/acpi/acpica/Subsystem/nsinit.c +++ b/sys/dev/acpi/acpica/Subsystem/nsinit.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: nsinit.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); #define __NSXFINIT_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/nsload.c b/sys/dev/acpi/acpica/Subsystem/nsload.c index af53c2c4b97..8ac42bf512a 100644 --- a/sys/dev/acpi/acpica/Subsystem/nsload.c +++ b/sys/dev/acpi/acpica/Subsystem/nsload.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: nsload.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #define __NSLOAD_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/nsnames.c b/sys/dev/acpi/acpica/Subsystem/nsnames.c index 02656561127..e01bea5f3be 100644 --- a/sys/dev/acpi/acpica/Subsystem/nsnames.c +++ b/sys/dev/acpi/acpica/Subsystem/nsnames.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: nsnames.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #define __NSNAMES_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/nsobject.c b/sys/dev/acpi/acpica/Subsystem/nsobject.c index ef3f0b7f00b..e8022132dcc 100644 --- a/sys/dev/acpi/acpica/Subsystem/nsobject.c +++ b/sys/dev/acpi/acpica/Subsystem/nsobject.c @@ -115,6 +115,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: nsobject.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); #define __NSOBJECT_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/nssearch.c b/sys/dev/acpi/acpica/Subsystem/nssearch.c index 324d3b82e21..43fa32f6f0c 100644 --- a/sys/dev/acpi/acpica/Subsystem/nssearch.c +++ b/sys/dev/acpi/acpica/Subsystem/nssearch.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: nssearch.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #define __NSSEARCH_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/nsutils.c b/sys/dev/acpi/acpica/Subsystem/nsutils.c index 7b48247ce25..f1aca6f583f 100644 --- a/sys/dev/acpi/acpica/Subsystem/nsutils.c +++ b/sys/dev/acpi/acpica/Subsystem/nsutils.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: nsutils.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #define __NSUTILS_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/nswalk.c b/sys/dev/acpi/acpica/Subsystem/nswalk.c index 8ddb3bfc38b..aed417c0fd1 100644 --- a/sys/dev/acpi/acpica/Subsystem/nswalk.c +++ b/sys/dev/acpi/acpica/Subsystem/nswalk.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: nswalk.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); #define __NSWALK_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/nsxfname.c b/sys/dev/acpi/acpica/Subsystem/nsxfname.c index fdbda30e185..3c2800c279e 100644 --- a/sys/dev/acpi/acpica/Subsystem/nsxfname.c +++ b/sys/dev/acpi/acpica/Subsystem/nsxfname.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: nsxfname.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #define __NSXFNAME_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/nsxfobj.c b/sys/dev/acpi/acpica/Subsystem/nsxfobj.c index 6d1186bdda2..07519bc552e 100644 --- a/sys/dev/acpi/acpica/Subsystem/nsxfobj.c +++ b/sys/dev/acpi/acpica/Subsystem/nsxfobj.c @@ -115,6 +115,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: nsxfobj.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); #define __NSXFOBJ_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/psargs.c b/sys/dev/acpi/acpica/Subsystem/psargs.c index f21b9bac058..18fcd9ffd90 100644 --- a/sys/dev/acpi/acpica/Subsystem/psargs.c +++ b/sys/dev/acpi/acpica/Subsystem/psargs.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: psargs.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #define __PSARGS_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/psfind.c b/sys/dev/acpi/acpica/Subsystem/psfind.c index 094e8936a4e..09becd45b43 100644 --- a/sys/dev/acpi/acpica/Subsystem/psfind.c +++ b/sys/dev/acpi/acpica/Subsystem/psfind.c @@ -115,6 +115,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: psfind.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); #define __PSFIND_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/psopcode.c b/sys/dev/acpi/acpica/Subsystem/psopcode.c index ea0bcca8652..bf521eae4e6 100644 --- a/sys/dev/acpi/acpica/Subsystem/psopcode.c +++ b/sys/dev/acpi/acpica/Subsystem/psopcode.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: psopcode.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); #include "acpi.h" #include "acparser.h" diff --git a/sys/dev/acpi/acpica/Subsystem/psparse.c b/sys/dev/acpi/acpica/Subsystem/psparse.c index 4ef424000d6..14b731b4a3b 100644 --- a/sys/dev/acpi/acpica/Subsystem/psparse.c +++ b/sys/dev/acpi/acpica/Subsystem/psparse.c @@ -124,6 +124,9 @@ * templates in AmlOpInfo[] */ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: psparse.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); + #include "acpi.h" #include "acparser.h" #include "acdispat.h" diff --git a/sys/dev/acpi/acpica/Subsystem/psscope.c b/sys/dev/acpi/acpica/Subsystem/psscope.c index b9127814c79..6cc2e47dea6 100644 --- a/sys/dev/acpi/acpica/Subsystem/psscope.c +++ b/sys/dev/acpi/acpica/Subsystem/psscope.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: psscope.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); #include "acpi.h" #include "acparser.h" diff --git a/sys/dev/acpi/acpica/Subsystem/pstree.c b/sys/dev/acpi/acpica/Subsystem/pstree.c index b40293529c4..f64da85fad1 100644 --- a/sys/dev/acpi/acpica/Subsystem/pstree.c +++ b/sys/dev/acpi/acpica/Subsystem/pstree.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: pstree.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); #define __PSTREE_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/psutils.c b/sys/dev/acpi/acpica/Subsystem/psutils.c index 307053ae535..ad10723e4b0 100644 --- a/sys/dev/acpi/acpica/Subsystem/psutils.c +++ b/sys/dev/acpi/acpica/Subsystem/psutils.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: psutils.c,v 1.2 2001/11/13 13:02:01 lukem Exp $"); #include "acpi.h" #include "acparser.h" diff --git a/sys/dev/acpi/acpica/Subsystem/pswalk.c b/sys/dev/acpi/acpica/Subsystem/pswalk.c index f9a9f244e7a..4751b4eeec2 100644 --- a/sys/dev/acpi/acpica/Subsystem/pswalk.c +++ b/sys/dev/acpi/acpica/Subsystem/pswalk.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: pswalk.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); #include "acpi.h" #include "amlcode.h" diff --git a/sys/dev/acpi/acpica/Subsystem/psxface.c b/sys/dev/acpi/acpica/Subsystem/psxface.c index 4ddd7b5d491..699e6751a3a 100644 --- a/sys/dev/acpi/acpica/Subsystem/psxface.c +++ b/sys/dev/acpi/acpica/Subsystem/psxface.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: psxface.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __PSXFACE_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/rsaddr.c b/sys/dev/acpi/acpica/Subsystem/rsaddr.c index dfd7bb9d62c..55282f30a09 100644 --- a/sys/dev/acpi/acpica/Subsystem/rsaddr.c +++ b/sys/dev/acpi/acpica/Subsystem/rsaddr.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: rsaddr.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __RSADDR_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/rscalc.c b/sys/dev/acpi/acpica/Subsystem/rscalc.c index 38725fe0365..3757690831c 100644 --- a/sys/dev/acpi/acpica/Subsystem/rscalc.c +++ b/sys/dev/acpi/acpica/Subsystem/rscalc.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: rscalc.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __RSCALC_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/rscreate.c b/sys/dev/acpi/acpica/Subsystem/rscreate.c index 2c122d98e6d..37680801506 100644 --- a/sys/dev/acpi/acpica/Subsystem/rscreate.c +++ b/sys/dev/acpi/acpica/Subsystem/rscreate.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: rscreate.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); #define __RSCREATE_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/rsdump.c b/sys/dev/acpi/acpica/Subsystem/rsdump.c index 0022b494009..f5334ef34b3 100644 --- a/sys/dev/acpi/acpica/Subsystem/rsdump.c +++ b/sys/dev/acpi/acpica/Subsystem/rsdump.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: rsdump.c,v 1.3 2001/11/13 13:02:02 lukem Exp $"); #define __RSDUMP_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/rsio.c b/sys/dev/acpi/acpica/Subsystem/rsio.c index 3c51d6d481b..35e0bf5b87b 100644 --- a/sys/dev/acpi/acpica/Subsystem/rsio.c +++ b/sys/dev/acpi/acpica/Subsystem/rsio.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: rsio.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __RSIO_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/rsirq.c b/sys/dev/acpi/acpica/Subsystem/rsirq.c index 2ba9e2eedec..77e1c5a56ef 100644 --- a/sys/dev/acpi/acpica/Subsystem/rsirq.c +++ b/sys/dev/acpi/acpica/Subsystem/rsirq.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: rsirq.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __RSIRQ_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/rslist.c b/sys/dev/acpi/acpica/Subsystem/rslist.c index 197f4f76ef4..4fdddc93d41 100644 --- a/sys/dev/acpi/acpica/Subsystem/rslist.c +++ b/sys/dev/acpi/acpica/Subsystem/rslist.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: rslist.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __RSLIST_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/rsmemory.c b/sys/dev/acpi/acpica/Subsystem/rsmemory.c index 804d983c252..08140da4b23 100644 --- a/sys/dev/acpi/acpica/Subsystem/rsmemory.c +++ b/sys/dev/acpi/acpica/Subsystem/rsmemory.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: rsmemory.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __RSMEMORY_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/rsmisc.c b/sys/dev/acpi/acpica/Subsystem/rsmisc.c index 5cfb60cd0fe..0d2872cba61 100644 --- a/sys/dev/acpi/acpica/Subsystem/rsmisc.c +++ b/sys/dev/acpi/acpica/Subsystem/rsmisc.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: rsmisc.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __RSMISC_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/rsutils.c b/sys/dev/acpi/acpica/Subsystem/rsutils.c index c3c43af7f3f..44c492dd777 100644 --- a/sys/dev/acpi/acpica/Subsystem/rsutils.c +++ b/sys/dev/acpi/acpica/Subsystem/rsutils.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: rsutils.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); #define __RSUTILS_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/rsxface.c b/sys/dev/acpi/acpica/Subsystem/rsxface.c index c193dc48555..191a630df94 100644 --- a/sys/dev/acpi/acpica/Subsystem/rsxface.c +++ b/sys/dev/acpi/acpica/Subsystem/rsxface.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: rsxface.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); #define __RSXFACE_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/tbconvrt.c b/sys/dev/acpi/acpica/Subsystem/tbconvrt.c index fd7d9a9ba57..fff42c195ac 100644 --- a/sys/dev/acpi/acpica/Subsystem/tbconvrt.c +++ b/sys/dev/acpi/acpica/Subsystem/tbconvrt.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: tbconvrt.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __TBCONVRT_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/tbget.c b/sys/dev/acpi/acpica/Subsystem/tbget.c index 2e22713a629..eb15ba88f90 100644 --- a/sys/dev/acpi/acpica/Subsystem/tbget.c +++ b/sys/dev/acpi/acpica/Subsystem/tbget.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: tbget.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __TBGET_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/tbinstal.c b/sys/dev/acpi/acpica/Subsystem/tbinstal.c index dcd2bb60fef..f3cb369dd4a 100644 --- a/sys/dev/acpi/acpica/Subsystem/tbinstal.c +++ b/sys/dev/acpi/acpica/Subsystem/tbinstal.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: tbinstal.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); #define __TBINSTAL_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/tbutils.c b/sys/dev/acpi/acpica/Subsystem/tbutils.c index 70b76dc05d2..2ccab2602ae 100644 --- a/sys/dev/acpi/acpica/Subsystem/tbutils.c +++ b/sys/dev/acpi/acpica/Subsystem/tbutils.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: tbutils.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __TBUTILS_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/tbxface.c b/sys/dev/acpi/acpica/Subsystem/tbxface.c index df73f4f21b8..2c0876fa701 100644 --- a/sys/dev/acpi/acpica/Subsystem/tbxface.c +++ b/sys/dev/acpi/acpica/Subsystem/tbxface.c @@ -115,6 +115,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: tbxface.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __TBXFACE_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/tbxfroot.c b/sys/dev/acpi/acpica/Subsystem/tbxfroot.c index 81638eb6934..0b41394482f 100644 --- a/sys/dev/acpi/acpica/Subsystem/tbxfroot.c +++ b/sys/dev/acpi/acpica/Subsystem/tbxfroot.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: tbxfroot.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __TBXFROOT_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/utalloc.c b/sys/dev/acpi/acpica/Subsystem/utalloc.c index b07f405af46..61927cafc70 100644 --- a/sys/dev/acpi/acpica/Subsystem/utalloc.c +++ b/sys/dev/acpi/acpica/Subsystem/utalloc.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: utalloc.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __UTALLOC_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/utclib.c b/sys/dev/acpi/acpica/Subsystem/utclib.c index b1545d38f66..33fefc1b774 100644 --- a/sys/dev/acpi/acpica/Subsystem/utclib.c +++ b/sys/dev/acpi/acpica/Subsystem/utclib.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: utclib.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); #define __CMCLIB_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/utcopy.c b/sys/dev/acpi/acpica/Subsystem/utcopy.c index 63a34142b9d..ca8477eb77e 100644 --- a/sys/dev/acpi/acpica/Subsystem/utcopy.c +++ b/sys/dev/acpi/acpica/Subsystem/utcopy.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: utcopy.c,v 1.3 2001/11/13 13:02:02 lukem Exp $"); + #define __UTCOPY_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/utdebug.c b/sys/dev/acpi/acpica/Subsystem/utdebug.c index 58da7226b05..8ae89b8c5ae 100644 --- a/sys/dev/acpi/acpica/Subsystem/utdebug.c +++ b/sys/dev/acpi/acpica/Subsystem/utdebug.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: utdebug.c,v 1.2 2001/11/13 13:02:02 lukem Exp $"); + #define __UTDEBUG_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/utdelete.c b/sys/dev/acpi/acpica/Subsystem/utdelete.c index c0888f129f6..b970bb79135 100644 --- a/sys/dev/acpi/acpica/Subsystem/utdelete.c +++ b/sys/dev/acpi/acpica/Subsystem/utdelete.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: utdelete.c,v 1.2 2001/11/13 13:02:03 lukem Exp $"); + #define __UTDELETE_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/uteval.c b/sys/dev/acpi/acpica/Subsystem/uteval.c index 3241e07a89b..8891bfdd54f 100644 --- a/sys/dev/acpi/acpica/Subsystem/uteval.c +++ b/sys/dev/acpi/acpica/Subsystem/uteval.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: uteval.c,v 1.2 2001/11/13 13:02:03 lukem Exp $"); + #define __UTEVAL_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/utglobal.c b/sys/dev/acpi/acpica/Subsystem/utglobal.c index 98e17be8308..bbdc9f513a5 100644 --- a/sys/dev/acpi/acpica/Subsystem/utglobal.c +++ b/sys/dev/acpi/acpica/Subsystem/utglobal.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: utglobal.c,v 1.2 2001/11/13 13:02:03 lukem Exp $"); + #define __UTGLOBAL_C__ #define DEFINE_ACPI_GLOBALS diff --git a/sys/dev/acpi/acpica/Subsystem/utinit.c b/sys/dev/acpi/acpica/Subsystem/utinit.c index a97924e562a..60e87ee25ba 100644 --- a/sys/dev/acpi/acpica/Subsystem/utinit.c +++ b/sys/dev/acpi/acpica/Subsystem/utinit.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: utinit.c,v 1.2 2001/11/13 13:02:03 lukem Exp $"); #define __UTINIT_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/utmisc.c b/sys/dev/acpi/acpica/Subsystem/utmisc.c index 9251e6b1559..31dc768cd3e 100644 --- a/sys/dev/acpi/acpica/Subsystem/utmisc.c +++ b/sys/dev/acpi/acpica/Subsystem/utmisc.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: utmisc.c,v 1.2 2001/11/13 13:02:03 lukem Exp $"); #define __UTMISC_C__ diff --git a/sys/dev/acpi/acpica/Subsystem/utobject.c b/sys/dev/acpi/acpica/Subsystem/utobject.c index 7a46279c143..fc696381894 100644 --- a/sys/dev/acpi/acpica/Subsystem/utobject.c +++ b/sys/dev/acpi/acpica/Subsystem/utobject.c @@ -114,6 +114,9 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: utobject.c,v 1.3 2001/11/13 13:02:03 lukem Exp $"); + #define __UTOBJECT_C__ #include "acpi.h" diff --git a/sys/dev/acpi/acpica/Subsystem/utxface.c b/sys/dev/acpi/acpica/Subsystem/utxface.c index f05268958f8..963569ef66f 100644 --- a/sys/dev/acpi/acpica/Subsystem/utxface.c +++ b/sys/dev/acpi/acpica/Subsystem/utxface.c @@ -114,6 +114,8 @@ * *****************************************************************************/ +#include <sys/cdefs.h> +__KERNEL_RCSID(0, "$NetBSD: utxface.c,v 1.2 2001/11/13 13:02:03 lukem Exp $"); #define __UTXFACE_C__ |
