More script-o fixes.

This commit is contained in:
thorpej 2002-10-02 03:25:46 +00:00
parent 8f34e7dde1
commit 4cac257e08
18 changed files with 59 additions and 59 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.c,v 1.7 2002/10/02 03:18:07 thorpej Exp $ */
/* $NetBSD: cpu.c,v 1.8 2002/10/02 03:25:46 thorpej Exp $ */
/*-
* Copyright (c) 2000, 2001 Ben Harris
@ -32,7 +32,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.7 2002/10/02 03:18:07 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.8 2002/10/02 03:25:46 thorpej Exp $");
#include <sys/device.h>
#include <sys/proc.h>
@ -68,7 +68,7 @@ struct cpu_softc {
};
CFATTACH_DECL(cpu_root, sizeof(struct cpu_softc),
cpu_match, cpu_attach, NULL, NULL);
cpu_match, cpu_attach, NULL, NULL);
/* cf_flags bits */
#define CFF_NOCACHE 0x00000001

View File

@ -1,4 +1,4 @@
/* $NetBSD: fpu.c,v 1.4 2002/10/02 02:21:20 thorpej Exp $ */
/* $NetBSD: fpu.c,v 1.5 2002/10/02 03:25:46 thorpej Exp $ */
/*-
* Copyright (c) 2000, 2001 Ben Harris
@ -32,7 +32,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: fpu.c,v 1.4 2002/10/02 02:21:20 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: fpu.c,v 1.5 2002/10/02 03:25:46 thorpej Exp $");
#include <sys/device.h>
#include <sys/proc.h>
@ -52,7 +52,7 @@ static void fpu_attach(struct device *, struct device *, void *);
static register_t fpu_identify(void);
CFATTACH_DECL(fpu, sizeof(struct fpu_softc),
fpu_match, fpu_attach, NULL, NULL);
fpu_match, fpu_attach, NULL, NULL);
struct fpu_softc *the_fpu;

View File

@ -1,4 +1,4 @@
/* $NetBSD: iobus.c,v 1.6 2002/10/02 02:21:20 thorpej Exp $ */
/* $NetBSD: iobus.c,v 1.7 2002/10/02 03:25:46 thorpej Exp $ */
/*-
* Copyright (c) 1998 Ben Harris
* All rights reserved.
@ -31,7 +31,7 @@
#include <sys/param.h>
__RCSID("$NetBSD: iobus.c,v 1.6 2002/10/02 02:21:20 thorpej Exp $");
__RCSID("$NetBSD: iobus.c,v 1.7 2002/10/02 03:25:46 thorpej Exp $");
#include <sys/device.h>
#include <sys/systm.h>
@ -54,7 +54,7 @@ struct iobus_softc {
};
CFATTACH_DECL(iobus, sizeof(struct iobus_softc),
iobus_match, iobus_attach, NULL, NULL);
iobus_match, iobus_attach, NULL, NULL);
struct iobus_softc *the_iobus;

View File

@ -1,4 +1,4 @@
/* $NetBSD: ioc.c,v 1.5 2002/10/02 02:21:20 thorpej Exp $ */
/* $NetBSD: ioc.c,v 1.6 2002/10/02 03:25:46 thorpej Exp $ */
/*-
* Copyright (c) 1998, 1999, 2000 Ben Harris
@ -32,7 +32,7 @@
#include <sys/param.h>
__RCSID("$NetBSD: ioc.c,v 1.5 2002/10/02 02:21:20 thorpej Exp $");
__RCSID("$NetBSD: ioc.c,v 1.6 2002/10/02 03:25:46 thorpej Exp $");
#include <sys/device.h>
#include <sys/kernel.h>
@ -59,7 +59,7 @@ static int ioc_irq_clock(void *cookie);
static int ioc_irq_statclock(void *cookie);
CFATTACH_DECL(ioc, sizeof(struct ioc_softc),
ioc_match, ioc_attach, NULL, NULL);
ioc_match, ioc_attach, NULL, NULL);
struct device *the_ioc;

View File

@ -1,4 +1,4 @@
/* $NetBSD: upc_iobus.c,v 1.4 2002/10/02 02:21:20 thorpej Exp $ */
/* $NetBSD: upc_iobus.c,v 1.5 2002/10/02 03:25:46 thorpej Exp $ */
/*-
* Copyright (c) 2000 Ben Harris
* All rights reserved.
@ -31,7 +31,7 @@
#include <sys/param.h>
__RCSID("$NetBSD: upc_iobus.c,v 1.4 2002/10/02 02:21:20 thorpej Exp $");
__RCSID("$NetBSD: upc_iobus.c,v 1.5 2002/10/02 03:25:46 thorpej Exp $");
#include <sys/device.h>
@ -61,7 +61,7 @@ struct upc_iobus_softc {
};
CFATTACH_DECL(upc_iobus, sizeof(struct upc_iobus_softc),
upc_iobus_match, upc_iobus_attach, NULL, NULL);
upc_iobus_match, upc_iobus_attach, NULL, NULL);
static struct device *the_upc_iobus;

View File

@ -1,4 +1,4 @@
/* $NetBSD: arckbd.c,v 1.4 2002/10/02 02:21:21 thorpej Exp $ */
/* $NetBSD: arckbd.c,v 1.5 2002/10/02 03:25:47 thorpej Exp $ */
/*-
* Copyright (c) 1998, 1999, 2000 Ben Harris
* All rights reserved.
@ -42,7 +42,7 @@
#include <sys/param.h>
__RCSID("$NetBSD: arckbd.c,v 1.4 2002/10/02 02:21:21 thorpej Exp $");
__RCSID("$NetBSD: arckbd.c,v 1.5 2002/10/02 03:25:47 thorpej Exp $");
#include <sys/device.h>
#include <sys/errno.h>
@ -165,7 +165,7 @@ struct arckbd_softc {
#define AKF_POLLING 0x10
CFATTACH_DECL(arckbd, sizeof(struct arckbd_softc),
arckbd_match, arckbd_attach, NULL, NULL);
arckbd_match, arckbd_attach, NULL, NULL);
/*
* Internal devices used because arckbd can't be both a wskbddev and a
@ -177,13 +177,13 @@ CFATTACH_DECL(arckbd, sizeof(struct arckbd_softc),
*/
#if NARCWSKBD > 0
CFATTACH_DECL(arcwskbd, sizeof(struct arcwskbd_softc),
arcwskbd_match, arcwskbd_attach, NULL, NULL);
CFATTACH_DECL(arcwskbd, sizeof(struct device),
arcwskbd_match, arcwskbd_attach, NULL, NULL);
#endif
#if NARCWSMOUSE > 0
CFATTACH_DECL(arcwsmouse, sizeof(struct arcwsmouse_softc),
arcwsmouse_match, arcwsmouse_attach, NULL, NULL);
CFATTACH_DECL(arcwsmouse, sizeof(struct device),
arcwsmouse_match, arcwsmouse_attach, NULL, NULL);
#endif
struct arckbd_attach_args {

View File

@ -1,4 +1,4 @@
/* $NetBSD: arcpp.c,v 1.4 2002/10/02 02:21:21 thorpej Exp $ */
/* $NetBSD: arcpp.c,v 1.5 2002/10/02 03:25:47 thorpej Exp $ */
/*-
* Copyright (c) 2001 Ben Harris
@ -52,7 +52,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: arcpp.c,v 1.4 2002/10/02 02:21:21 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: arcpp.c,v 1.5 2002/10/02 03:25:47 thorpej Exp $");
#include <sys/conf.h>
#include <sys/device.h>
@ -123,7 +123,7 @@ static int arcppintr(void *);
static int arcpppushbytes(struct arcpp_softc *);
CFATTACH_DECL(arcpp, sizeof(struct arcpp_softc),
arcpp_match, arcpp_attach, NULL, NULL);
arcpp_match, arcpp_attach, NULL, NULL);
static int
arcpp_match(struct device *parent, struct cfdata *cf, void *aux)

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_eca.c,v 1.3 2002/10/02 02:21:21 thorpej Exp $ */
/* $NetBSD: if_eca.c,v 1.4 2002/10/02 03:25:47 thorpej Exp $ */
/*-
* Copyright (c) 2001 Ben Harris
@ -29,7 +29,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: if_eca.c,v 1.3 2002/10/02 02:21:21 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: if_eca.c,v 1.4 2002/10/02 03:25:47 thorpej Exp $");
#include <sys/device.h>
#include <sys/malloc.h>
@ -74,7 +74,7 @@ static void eca_gotframe(void *);
struct eca_softc *eca_fiqowner;
CFATTACH_DECL(eca, sizeof(struct eca_softc),
eca_match, eca_attach, NULL, NULL);
eca_match, eca_attach, NULL, NULL);
static int
eca_match(struct device *parent, struct cfdata *cf, void *aux)

View File

@ -1,4 +1,4 @@
/* $NetBSD: iic.c,v 1.4 2002/10/02 02:21:21 thorpej Exp $ */
/* $NetBSD: iic.c,v 1.5 2002/10/02 03:25:47 thorpej Exp $ */
/*
* Copyright (c) 1994-1996 Mark Brinicombe.
@ -47,7 +47,7 @@
#include <sys/param.h>
__RCSID("$NetBSD: iic.c,v 1.4 2002/10/02 02:21:21 thorpej Exp $");
__RCSID("$NetBSD: iic.c,v 1.5 2002/10/02 03:25:47 thorpej Exp $");
#include <sys/systm.h>
#include <sys/kernel.h>
@ -73,7 +73,7 @@ static void iic_attach(struct device *, struct device *, void *);
static int iicsearch(struct device *, struct cfdata *, void *);
CFATTACH_DECL(iic, sizeof(struct iic_softc),
iic_match, iic_attach, NULL, NULL);
iic_match, iic_attach, NULL, NULL);
/* Local function prototypes */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ioeb.c,v 1.4 2002/10/02 02:21:21 thorpej Exp $ */
/* $NetBSD: ioeb.c,v 1.5 2002/10/02 03:25:47 thorpej Exp $ */
/*-
* Copyright (c) 2000 Ben Harris
@ -29,7 +29,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: ioeb.c,v 1.4 2002/10/02 02:21:21 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: ioeb.c,v 1.5 2002/10/02 03:25:47 thorpej Exp $");
#include <sys/device.h>
#include <sys/systm.h>
@ -50,7 +50,7 @@ static int ioeb_match(struct device *, struct cfdata *, void *);
static void ioeb_attach(struct device *, struct device *, void *);
CFATTACH_DECL(ioeb, sizeof(struct ioeb_softc),
ioeb_match, ioeb_attach, NULL, NULL);
ioeb_match, ioeb_attach, NULL, NULL);
struct device *the_ioeb;

View File

@ -1,4 +1,4 @@
/* $NetBSD: latches.c,v 1.3 2002/10/02 02:21:21 thorpej Exp $ */
/* $NetBSD: latches.c,v 1.4 2002/10/02 03:25:47 thorpej Exp $ */
/*-
* Copyright (c) 2001 Ben Harris
@ -29,7 +29,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: latches.c,v 1.3 2002/10/02 02:21:21 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: latches.c,v 1.4 2002/10/02 03:25:47 thorpej Exp $");
#include <sys/device.h>
#include <sys/systm.h>
@ -55,7 +55,7 @@ static int latches_match(struct device *, struct cfdata *, void *);
static void latches_attach(struct device *, struct device *, void *);
CFATTACH_DECL(latches, sizeof(struct latches_softc),
latches_match, latches_attach, NULL, NULL);
latches_match, latches_attach, NULL, NULL);
struct device *the_latches;

View File

@ -1,4 +1,4 @@
/* $NetBSD: rtc.c,v 1.3 2002/10/02 02:21:21 thorpej Exp $ */
/* $NetBSD: rtc.c,v 1.4 2002/10/02 03:25:47 thorpej Exp $ */
/*
* Copyright (c) 2000 Ben Harris
@ -45,7 +45,7 @@
#include <sys/param.h>
__RCSID("$NetBSD: rtc.c,v 1.3 2002/10/02 02:21:21 thorpej Exp $");
__RCSID("$NetBSD: rtc.c,v 1.4 2002/10/02 03:25:47 thorpej Exp $");
#include <sys/errno.h>
#include <sys/systm.h>
@ -87,7 +87,7 @@ struct rtc_softc *the_rtc;
/* device and attach structures */
CFATTACH_DECL(rtc, sizeof(struct rtc_softc),
rtcmatch, rtcattach, NULL, NULL);
rtcmatch, rtcattach, NULL, NULL);
/*
* rtcmatch()

View File

@ -1,4 +1,4 @@
/* $NetBSD: ssn.c,v 1.4 2002/10/02 02:21:21 thorpej Exp $ */
/* $NetBSD: ssn.c,v 1.5 2002/10/02 03:25:47 thorpej Exp $ */
/*-
* Copyright (c) 2002 Ben Harris
@ -29,7 +29,7 @@
#include <sys/param.h>
__RCSID("$NetBSD: ssn.c,v 1.4 2002/10/02 02:21:21 thorpej Exp $");
__RCSID("$NetBSD: ssn.c,v 1.5 2002/10/02 03:25:47 thorpej Exp $");
#include <sys/device.h>
#include <sys/systm.h>
@ -52,7 +52,7 @@ static int ssn_match(struct device *, struct cfdata *, void *);
static void ssn_attach(struct device *, struct device *, void *);
CFATTACH_DECL(ssn, sizeof(struct ssn_softc),
ssn_match, ssn_attach, NULL, NULL);
ssn_match, ssn_attach, NULL, NULL);
static int ds_ioc_read_bit(void *);
static void ds_ioc_write_bit(void *, int);

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_eh.c,v 1.5 2002/10/02 02:21:21 thorpej Exp $ */
/* $NetBSD: if_eh.c,v 1.6 2002/10/02 03:25:47 thorpej Exp $ */
/*-
* Copyright (c) 2000 Ben Harris
@ -52,7 +52,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: if_eh.c,v 1.5 2002/10/02 02:21:21 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: if_eh.c,v 1.6 2002/10/02 03:25:47 thorpej Exp $");
#include <sys/systm.h>
#include <sys/device.h>
@ -135,7 +135,7 @@ static int eh_match(struct device *, struct cfdata *, void *);
static void eh_attach(struct device *, struct device *, void *);
CFATTACH_DECL(eh, sizeof(struct eh_softc),
eh_match, eh_attach, NULL, NULL);
eh_match, eh_attach, NULL, NULL);
static int
eh_match(struct device *parent, struct cfdata *cf, void *aux)

View File

@ -1,4 +1,4 @@
/* $NetBSD: podulebus.c,v 1.6 2002/10/02 02:21:21 thorpej Exp $ */
/* $NetBSD: podulebus.c,v 1.7 2002/10/02 03:25:47 thorpej Exp $ */
/*-
* Copyright (c) 2000 Ben Harris
@ -29,7 +29,7 @@
#include <sys/param.h>
__RCSID("$NetBSD: podulebus.c,v 1.6 2002/10/02 02:21:21 thorpej Exp $");
__RCSID("$NetBSD: podulebus.c,v 1.7 2002/10/02 03:25:47 thorpej Exp $");
#include <sys/device.h>
#include <sys/malloc.h>
@ -75,7 +75,7 @@ struct podulebus_softc {
};
CFATTACH_DECL(podulebus, sizeof(struct podulebus_softc),
podulebus_match, podulebus_attach, NULL, NULL);
podulebus_match, podulebus_attach, NULL, NULL);
/* ARGSUSED */
static int

View File

@ -1,10 +1,10 @@
/* $NetBSD: powerrom.c,v 1.3 2002/10/02 02:21:21 thorpej Exp $ */
/* $NetBSD: powerrom.c,v 1.4 2002/10/02 03:25:47 thorpej Exp $ */
/* Test driver to see if we can talk to PowerROMs */
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: powerrom.c,v 1.3 2002/10/02 02:21:21 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: powerrom.c,v 1.4 2002/10/02 03:25:47 thorpej Exp $");
#include <sys/device.h>
#include <sys/systm.h>
@ -14,8 +14,8 @@ __KERNEL_RCSID(0, "$NetBSD: powerrom.c,v 1.3 2002/10/02 02:21:21 thorpej Exp $")
int powerrom_match(struct device *, struct cfdata *, void *);
void powerrom_attach(struct device *, struct device *, void *);
CFATTACH_DECL(powerrom, sizeof(struct powerrom_softc),
powerrom_match, powerrom_attach, NULL, NULL);
CFATTACH_DECL(powerrom, sizeof(struct device),
powerrom_match, powerrom_attach, NULL, NULL);
int
powerrom_match(struct device *parent, struct cfdata *cf, void *aux)

View File

@ -1,4 +1,4 @@
/* $NetBSD: unixbp.c,v 1.4 2002/10/02 02:21:21 thorpej Exp $ */
/* $NetBSD: unixbp.c,v 1.5 2002/10/02 03:25:47 thorpej Exp $ */
/*-
* Copyright (c) 2000 Ben Harris
@ -32,7 +32,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: unixbp.c,v 1.4 2002/10/02 02:21:21 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: unixbp.c,v 1.5 2002/10/02 03:25:47 thorpej Exp $");
#include <sys/device.h>
#include <sys/systm.h>
@ -51,7 +51,7 @@ static int unixbp_match(struct device *, struct cfdata *, void *);
static void unixbp_attach(struct device *, struct device *, void *);
CFATTACH_DECL(unixbp, sizeof(struct unixbp_softc),
unixbp_match, unixbp_attach, NULL, NULL);
unixbp_match, unixbp_attach, NULL, NULL);
struct device *the_unixbp;

View File

@ -1,4 +1,4 @@
/* $NetBSD: arcvideo.c,v 1.5 2002/10/02 02:21:22 thorpej Exp $ */
/* $NetBSD: arcvideo.c,v 1.6 2002/10/02 03:26:28 thorpej Exp $ */
/*-
* Copyright (c) 1998, 2000 Ben Harris
* All rights reserved.
@ -38,7 +38,7 @@
#include <sys/param.h>
__RCSID("$NetBSD: arcvideo.c,v 1.5 2002/10/02 02:21:22 thorpej Exp $");
__RCSID("$NetBSD: arcvideo.c,v 1.6 2002/10/02 03:26:28 thorpej Exp $");
#include <sys/device.h>
#include <sys/errno.h>
@ -98,7 +98,7 @@ struct arcvideo_softc {
};
CFATTACH_DECL(arcvideo, sizeof(struct arcvideo_softc),
arcvideo_match, arcvideo_attach, NULL, NULL);
arcvideo_match, arcvideo_attach, NULL, NULL);
struct device *the_arcvideo;