add __KERNEL_RCSID() (using 1, for #included .c files)
This commit is contained in:
parent
a329d6f3f8
commit
10926a715a
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: if_ade.c,v 1.21 2003/04/01 02:17:17 thorpej Exp $ */
|
/* $NetBSD: if_ade.c,v 1.22 2003/07/14 23:25:35 lukem Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* NOTE: this version of if_de was modified for bounce buffers prior
|
* NOTE: this version of if_de was modified for bounce buffers prior
|
||||||
@ -80,6 +80,9 @@
|
|||||||
#define TULIP_HDR_DATA
|
#define TULIP_HDR_DATA
|
||||||
#define LCLDMA 1
|
#define LCLDMA 1
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__KERNEL_RCSID(0, "$NetBSD: if_ade.c,v 1.22 2003/07/14 23:25:35 lukem Exp $");
|
||||||
|
|
||||||
#include "opt_inet.h"
|
#include "opt_inet.h"
|
||||||
#include "opt_ns.h"
|
#include "opt_ns.h"
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: cpuconf.c,v 1.28 2002/09/27 15:35:33 provos Exp $ */
|
/* $NetBSD: cpuconf.c,v 1.29 2003/07/14 23:25:37 lukem Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||||
@ -66,6 +66,9 @@
|
|||||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__KERNEL_RCSID(0, "$NetBSD: cpuconf.c,v 1.29 2003/07/14 23:25:37 lukem Exp $");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/device.h>
|
#include <sys/device.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: linux_trap.c,v 1.2 2003/01/17 22:11:18 thorpej Exp $ */
|
/* $NetBSD: linux_trap.c,v 1.3 2003/07/14 23:25:38 lukem Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||||
@ -36,6 +36,9 @@
|
|||||||
* POSSIBILITY OF SUCH DAMAGE.
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__KERNEL_RCSID(0, "$NetBSD: linux_trap.c,v 1.3 2003/07/14 23:25:38 lukem Exp $");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
#include <sys/proc.h>
|
#include <sys/proc.h>
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
/* $NetBSD: procfs_machdep.c,v 1.2 2001/01/18 17:47:58 tv Exp $ */
|
/* $NetBSD: procfs_machdep.c,v 1.3 2003/07/14 23:25:38 lukem Exp $ */
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__KERNEL_RCSID(0, "$NetBSD: procfs_machdep.c,v 1.3 2003/07/14 23:25:38 lukem Exp $");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: isapnp_machdep.c,v 1.3 1998/09/05 15:28:04 christos Exp $ */
|
/* $NetBSD: isapnp_machdep.c,v 1.4 2003/07/14 23:25:38 lukem Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
|
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
|
||||||
@ -51,6 +51,9 @@
|
|||||||
* assumptions about bus.h's guts. Beware!
|
* assumptions about bus.h's guts. Beware!
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__KERNEL_RCSID(0, "$NetBSD: isapnp_machdep.c,v 1.4 2003/07/14 23:25:38 lukem Exp $");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
#include <sys/device.h>
|
#include <sys/device.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: agp_machdep.c,v 1.1 2001/09/16 02:09:47 thorpej Exp $ */
|
/* $NetBSD: agp_machdep.c,v 1.2 2003/07/14 23:25:39 lukem Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 2001 Wasabi Systems, Inc.
|
* Copyright 2001 Wasabi Systems, Inc.
|
||||||
@ -35,6 +35,9 @@
|
|||||||
* POSSIBILITY OF SUCH DAMAGE.
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__KERNEL_RCSID(0, "$NetBSD: agp_machdep.c,v 1.2 2003/07/14 23:25:39 lukem Exp $");
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/device.h>
|
#include <sys/device.h>
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: pci_bwx_bus_io_chipdep.c,v 1.13 2001/09/04 16:14:49 thorpej Exp $ */
|
/* $NetBSD: pci_bwx_bus_io_chipdep.c,v 1.14 2003/07/14 23:25:39 lukem Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1997, 1998, 2000 The NetBSD Foundation, Inc.
|
* Copyright (c) 1997, 1998, 2000 The NetBSD Foundation, Inc.
|
||||||
@ -82,6 +82,9 @@
|
|||||||
* for the I/O memory space extent.
|
* for the I/O memory space extent.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__KERNEL_RCSID(1, "$NetBSD: pci_bwx_bus_io_chipdep.c,v 1.14 2003/07/14 23:25:39 lukem Exp $");
|
||||||
|
|
||||||
#include <sys/extent.h>
|
#include <sys/extent.h>
|
||||||
|
|
||||||
#include <machine/bwx.h>
|
#include <machine/bwx.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: pci_bwx_bus_mem_chipdep.c,v 1.17 2001/09/16 03:50:01 thorpej Exp $ */
|
/* $NetBSD: pci_bwx_bus_mem_chipdep.c,v 1.18 2003/07/14 23:25:39 lukem Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1997, 1998, 2000 The NetBSD Foundation, Inc.
|
* Copyright (c) 1997, 1998, 2000 The NetBSD Foundation, Inc.
|
||||||
@ -82,6 +82,9 @@
|
|||||||
* for the memory space extent.
|
* for the memory space extent.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__KERNEL_RCSID(1, "$NetBSD: pci_bwx_bus_mem_chipdep.c,v 1.18 2003/07/14 23:25:39 lukem Exp $");
|
||||||
|
|
||||||
#include <sys/extent.h>
|
#include <sys/extent.h>
|
||||||
|
|
||||||
#include <machine/bwx.h>
|
#include <machine/bwx.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: pci_swiz_bus_io_chipdep.c,v 1.32 2001/09/04 05:31:28 thorpej Exp $ */
|
/* $NetBSD: pci_swiz_bus_io_chipdep.c,v 1.33 2003/07/14 23:25:39 lukem Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
|
* Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
|
||||||
@ -82,6 +82,9 @@
|
|||||||
* for the I/O memory space extent.
|
* for the I/O memory space extent.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__KERNEL_RCSID(1, "$NetBSD: pci_swiz_bus_io_chipdep.c,v 1.33 2003/07/14 23:25:39 lukem Exp $");
|
||||||
|
|
||||||
#include <sys/extent.h>
|
#include <sys/extent.h>
|
||||||
|
|
||||||
#define __C(A,B) __CONCAT(A,B)
|
#define __C(A,B) __CONCAT(A,B)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: pci_swiz_bus_mem_chipdep.c,v 1.37 2002/07/22 20:05:23 mycroft Exp $ */
|
/* $NetBSD: pci_swiz_bus_mem_chipdep.c,v 1.38 2003/07/14 23:25:40 lukem Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||||
@ -91,6 +91,9 @@
|
|||||||
* for the sparse memory space extent.
|
* for the sparse memory space extent.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__KERNEL_RCSID(1, "$NetBSD: pci_swiz_bus_mem_chipdep.c,v 1.38 2003/07/14 23:25:40 lukem Exp $");
|
||||||
|
|
||||||
#include <sys/extent.h>
|
#include <sys/extent.h>
|
||||||
|
|
||||||
#define __C(A,B) __CONCAT(A,B)
|
#define __C(A,B) __CONCAT(A,B)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: tsp_bus_mem.c,v 1.6 2000/11/29 06:30:09 thorpej Exp $ */
|
/* $NetBSD: tsp_bus_mem.c,v 1.7 2003/07/14 23:25:40 lukem Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1999 by Ross Harvey. All rights reserved.
|
* Copyright (c) 1999 by Ross Harvey. All rights reserved.
|
||||||
@ -31,6 +31,9 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__KERNEL_RCSID(0, "$NetBSD: tsp_bus_mem.c,v 1.7 2003/07/14 23:25:40 lukem Exp $");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
#include <sys/malloc.h>
|
#include <sys/malloc.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: tsp_dma.c,v 1.4 2001/07/19 19:09:22 thorpej Exp $ */
|
/* $NetBSD: tsp_dma.c,v 1.5 2003/07/14 23:25:40 lukem Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1999 by Ross Harvey. All rights reserved.
|
* Copyright (c) 1999 by Ross Harvey. All rights reserved.
|
||||||
@ -68,6 +68,9 @@
|
|||||||
* POSSIBILITY OF SUCH DAMAGE.
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__KERNEL_RCSID(0, "$NetBSD: tsp_dma.c,v 1.5 2003/07/14 23:25:40 lukem Exp $");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
#include <sys/kernel.h>
|
#include <sys/kernel.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: alphaled.c,v 1.1 2002/11/23 09:05:03 scw Exp $ */
|
/* $NetBSD: alphaled.c,v 1.2 2003/07/14 23:25:41 lukem Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 2002 Wasabi Systems, Inc.
|
* Copyright 2002 Wasabi Systems, Inc.
|
||||||
@ -35,6 +35,9 @@
|
|||||||
* POSSIBILITY OF SUCH DAMAGE.
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__KERNEL_RCSID(0, "$NetBSD: alphaled.c,v 1.2 2003/07/14 23:25:41 lukem Exp $");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
#include <sys/device.h>
|
#include <sys/device.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user