Fix script-o's in previous.

This commit is contained in:
thorpej 2002-10-02 03:31:58 +00:00
parent 4cac257e08
commit 7c0e5bcc4b
17 changed files with 42 additions and 42 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: com_pioc.c,v 1.6 2002/10/02 02:23:51 thorpej Exp $ */
/* $NetBSD: com_pioc.c,v 1.7 2002/10/02 03:31:58 thorpej Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -73,7 +73,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: com_pioc.c,v 1.6 2002/10/02 02:23:51 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: com_pioc.c,v 1.7 2002/10/02 03:31:58 thorpej Exp $");
#include <sys/systm.h>
#include <sys/tty.h>
@ -110,7 +110,7 @@ static void com_pioc_cleanup __P((void *));
/* device attach structure */
CFATTACH_DECL(com_pioc, sizeof(struct com_pioc_softc),
com_pioc_probe, com_pioc_attach, NULL, NULL);
com_pioc_probe, com_pioc_attach, NULL, NULL);
extern bus_space_tag_t comconstag; /* From pioc.c */

View File

@ -1,4 +1,4 @@
/* $NetBSD: fd.c,v 1.9 2002/10/02 02:23:51 thorpej Exp $ */
/* $NetBSD: fd.c,v 1.10 2002/10/02 03:31:58 thorpej Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -187,7 +187,7 @@ int fdprint __P((void *, const char *));
void fdcattach __P((struct device *, struct device *, void *));
CFATTACH_DECL(fdc, sizeof(struct fdc_softc),
fdcprobe, fdcattach, NULL, NULL);
fdcprobe, fdcattach, NULL, NULL);
/*
* Floppies come in various flavors, e.g., 1.2MB vs 1.44MB; here is how
@ -264,7 +264,7 @@ extern char floppy_read_fiq[], floppy_read_fiq_end[];
extern char floppy_write_fiq[], floppy_write_fiq_end[];
CFATTACH_DECL(fd, sizeof(struct fd_softc),
fdprobe, fdattach, NULL, NULL);
fdprobe, fdattach, NULL, NULL);
extern struct cfdriver fd_cd;

View File

@ -1,4 +1,4 @@
/* $NetBSD: lpt_pioc.c,v 1.7 2002/10/02 02:23:51 thorpej Exp $ */
/* $NetBSD: lpt_pioc.c,v 1.8 2002/10/02 03:31:58 thorpej Exp $ */
/*
* Copyright (c) 1997 Mark Brinicombe
@ -36,7 +36,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: lpt_pioc.c,v 1.7 2002/10/02 02:23:51 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: lpt_pioc.c,v 1.8 2002/10/02 03:31:58 thorpej Exp $");
#include <sys/systm.h>
#include <sys/kernel.h>
@ -59,8 +59,8 @@ static void lpt_pioc_attach __P((struct device *, struct device *, void *));
/* device attach structure */
CFATTACH_DECL(lpt_pioc, sizeof(struct lpt_pioc_softc),
lpt_pioc_probe, lpt_pioc_attach, NULL, NULL);
CFATTACH_DECL(lpt_pioc, sizeof(struct lpt_softc),
lpt_pioc_probe, lpt_pioc_attach, NULL, NULL);
/*
* Internal routine to lptprobe to do port tests of one byte value.

View File

@ -1,4 +1,4 @@
/* $NetBSD: pioc.c,v 1.4 2002/10/02 02:23:51 thorpej Exp $ */
/* $NetBSD: pioc.c,v 1.5 2002/10/02 03:31:59 thorpej Exp $ */
/*
* Copyright (c) 1997 Mark Brinicombe.
@ -101,7 +101,7 @@ static void piocgetid __P((bus_space_tag_t iot, bus_space_handle_t ioh,
/* device attach and driver structure */
CFATTACH_DECL(pioc, sizeof(struct pioc_softc),
piocmatch, piocattach, NULL, NULL);
piocmatch, piocattach, NULL, NULL);
/*
* void piocgetid(bus_space_tag_t iot, bus_space_handle_t ioh,

View File

@ -1,4 +1,4 @@
/* $NetBSD: wdc_pioc.c,v 1.5 2002/10/02 02:23:51 thorpej Exp $ */
/* $NetBSD: wdc_pioc.c,v 1.6 2002/10/02 03:31:59 thorpej Exp $ */
/*
* Copyright (c) 1997-1998 Mark Brinicombe.
@ -65,7 +65,7 @@ static void wdc_pioc_attach __P((struct device *, struct device *, void *));
/* device attach structure */
CFATTACH_DECL(wdc_pioc, sizeof(struct wdc_pioc_softc),
wdc_pioc_probe, wdc_pioc_attach, NULL, NULL);
wdc_pioc_probe, wdc_pioc_attach, NULL, NULL);
/*
* int wdc_pioc_probe(struct device *parent, struct cfdata *cf, void *aux)

View File

@ -1,4 +1,4 @@
/* $NetBSD: amps.c,v 1.5 2002/10/02 02:23:51 thorpej Exp $ */
/* $NetBSD: amps.c,v 1.6 2002/10/02 03:31:59 thorpej Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@ -95,7 +95,7 @@ void amps_attach __P((struct device *, struct device *, void *));
void amps_shutdown __P((void *arg));
CFATTACH_DECL(amps, sizeof(struct amps_softc),
amps_probe, amps_attach, NULL, NULL);
amps_probe, amps_attach, NULL, NULL);
/*
* Attach arguments for child devices.

View File

@ -1,4 +1,4 @@
/* $NetBSD: asc.c,v 1.10 2002/10/02 02:23:51 thorpej Exp $ */
/* $NetBSD: asc.c,v 1.11 2002/10/02 03:31:59 thorpej Exp $ */
/*
* Copyright (c) 2001 Richard Earnshaw
@ -74,7 +74,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: asc.c,v 1.10 2002/10/02 02:23:51 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: asc.c,v 1.11 2002/10/02 03:31:59 thorpej Exp $");
#include <sys/systm.h>
#include <sys/kernel.h>
@ -123,7 +123,7 @@ int asc_dmadebug = 0;
#endif
CFATTACH_DECL(asc, sizeof(struct asc_softc),
ascmatch, ascattach, NULL, NULL);
ascmatch, ascattach, NULL, NULL);
extern struct cfdriver asc_cd;

View File

@ -1,4 +1,4 @@
/* $NetBSD: cosc.c,v 1.8 2002/10/02 02:23:51 thorpej Exp $ */
/* $NetBSD: cosc.c,v 1.9 2002/10/02 03:31:59 thorpej Exp $ */
/*
* Copyright (c) 1996 Mark Brinicombe
@ -63,7 +63,7 @@ void coscattach __P((struct device *, struct device *, void *));
int coscmatch __P((struct device *, struct cfdata *, void *));
CFATTACH_DECL(cosc, sizeof(struct cosc_softc),
coscmatch, coscattach, NULL, NULL);
coscmatch, coscattach, NULL, NULL);
int cosc_intr __P((void *arg));
int cosc_setup_dma __P((struct esc_softc *sc, void *ptr, int len,

View File

@ -1,4 +1,4 @@
/* $NetBSD: csa.c,v 1.5 2002/10/02 02:23:51 thorpej Exp $ */
/* $NetBSD: csa.c,v 1.6 2002/10/02 03:31:59 thorpej Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -98,7 +98,7 @@ struct csa_softc {
};
CFATTACH_DECL(csa, sizeof(struct csa_softc),
csa_match, csa_attach, NULL, NULL);
csa_match, csa_attach, NULL, NULL);
int csa_intr __P((void *arg));

View File

@ -1,4 +1,4 @@
/* $NetBSD: csc.c,v 1.7 2002/10/02 02:23:51 thorpej Exp $ */
/* $NetBSD: csc.c,v 1.8 2002/10/02 03:31:59 thorpej Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -64,7 +64,7 @@ void cscattach __P((struct device *, struct device *, void *));
int cscmatch __P((struct device *, struct cfdata *, void *));
CFATTACH_DECL(csc, sizeof(struct csc_softc),
cscmatch, cscattach, NULL, NULL);
cscmatch, cscattach, NULL, NULL);
int csc_intr __P((void *arg));
int csc_setup_dma __P((struct sfas_softc *sc, void *ptr, int len,

View File

@ -1,4 +1,4 @@
/* $NetBSD: icside.c,v 1.9 2002/10/02 02:23:51 thorpej Exp $ */
/* $NetBSD: icside.c,v 1.10 2002/10/02 03:31:59 thorpej Exp $ */
/*
* Copyright (c) 1997-1998 Mark Brinicombe
@ -42,7 +42,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: icside.c,v 1.9 2002/10/02 02:23:51 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: icside.c,v 1.10 2002/10/02 03:31:59 thorpej Exp $");
#include <sys/systm.h>
#include <sys/conf.h>
@ -100,7 +100,7 @@ int icside_intr(void *);
void icside_v6_shutdown(void *);
CFATTACH_DECL(icside, sizeof(struct icside_softc),
icside_probe, icside_attach, NULL, NULL);
icside_probe, icside_attach, NULL, NULL);
/*
* Define prototypes for custom bus space functions.

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_ie.c,v 1.9 2002/10/02 02:23:51 thorpej Exp $ */
/* $NetBSD: if_ie.c,v 1.10 2002/10/02 03:31:59 thorpej Exp $ */
/*
* Copyright (c) 1995 Melvin Tang-Richardson.
@ -61,7 +61,7 @@
#include <sys/param.h>
__RCSID("$NetBSD: if_ie.c,v 1.9 2002/10/02 02:23:51 thorpej Exp $");
__RCSID("$NetBSD: if_ie.c,v 1.10 2002/10/02 03:31:59 thorpej Exp $");
#include <sys/systm.h>
#include <sys/kernel.h>
@ -201,7 +201,7 @@ static void start_receiver(struct ie_softc *);
*/
CFATTACH_DECL(ie, sizeof(struct ie_softc),
ieprobe, ieattach, NULL, NULL);
ieprobe, ieattach, NULL, NULL);
/* Let's go! */

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_ne_pbus.c,v 1.8 2002/10/02 02:23:51 thorpej Exp $ */
/* $NetBSD: if_ne_pbus.c,v 1.9 2002/10/02 03:31:59 thorpej Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -104,7 +104,7 @@ static int ne_pbus_probe __P((struct device *, struct cfdata *, void *));
static void ne_pbus_attach __P((struct device *, struct device *, void *));
CFATTACH_DECL(ne_pbus, sizeof(struct ne_pbus_softc),
ne_pbus_probe, ne_pbus_attach, NULL, NULL);
ne_pbus_probe, ne_pbus_attach, NULL, NULL);
/*
* Prototypes for interface specific routines

View File

@ -1,4 +1,4 @@
/* $NetBSD: podulebus.c,v 1.13 2002/10/02 02:23:52 thorpej Exp $ */
/* $NetBSD: podulebus.c,v 1.14 2002/10/02 03:31:59 thorpej Exp $ */
/*
* Copyright (c) 1994-1996 Mark Brinicombe.
@ -43,7 +43,7 @@
#include <sys/param.h>
__KERNEL_RCSID(0, "$NetBSD: podulebus.c,v 1.13 2002/10/02 02:23:52 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: podulebus.c,v 1.14 2002/10/02 03:31:59 thorpej Exp $");
#include <sys/systm.h>
#include <sys/kernel.h>
@ -525,7 +525,7 @@ podulebusattach(parent, self, aux)
}
CFATTACH_DECL(podulebus, sizeof(struct podulebus_softc),
CFATTACH_DECL(podulebus, sizeof(struct device),
podulebusmatch, podulebusattach, NULL, NULL);
/* Useful functions that drivers may share */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ptsc.c,v 1.6 2002/10/02 02:23:52 thorpej Exp $ */
/* $NetBSD: ptsc.c,v 1.7 2002/10/02 03:31:59 thorpej Exp $ */
/*
* Copyright (c) 1995 Scott Stevens
@ -69,7 +69,7 @@ void ptscattach __P((struct device *, struct device *, void *));
int ptscmatch __P((struct device *, struct cfdata *, void *));
CFATTACH_DECL(ptsc, sizeof(struct ptsc_softc),
ptscmatch, ptscattach, NULL, NULL);
ptscmatch, ptscattach, NULL, NULL);
int ptsc_intr __P((void *arg));
int ptsc_setup_dma __P((struct sfas_softc *sc, void *ptr, int len,

View File

@ -1,4 +1,4 @@
/* $NetBSD: rapide.c,v 1.6 2002/10/02 02:23:52 thorpej Exp $ */
/* $NetBSD: rapide.c,v 1.7 2002/10/02 03:31:59 thorpej Exp $ */
/*
* Copyright (c) 1997-1998 Mark Brinicombe
@ -126,7 +126,7 @@ void rapide_shutdown __P((void *arg));
int rapide_intr __P((void *));
CFATTACH_DECL(rapide, sizeof(struct rapide_softc),
rapide_probe, rapide_attach, NULL, NULL);
rapide_probe, rapide_attach, NULL, NULL);
/*
* We have a private bus space tag.

View File

@ -1,4 +1,4 @@
/* $NetBSD: simide.c,v 1.6 2002/10/02 02:23:52 thorpej Exp $ */
/* $NetBSD: simide.c,v 1.7 2002/10/02 03:31:59 thorpej Exp $ */
/*
* Copyright (c) 1997-1998 Mark Brinicombe
@ -96,7 +96,7 @@ void simide_shutdown __P((void *arg));
int simide_intr __P((void *arg));
CFATTACH_DECL(simide, sizeof(struct simide_softc),
simide_probe, simide_attach, NULL, NULL);
simide_probe, simide_attach, NULL, NULL);
/*