summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2002-10-02 16:50:59 +0000
committerthorpej <thorpej@NetBSD.org>2002-10-02 16:50:59 +0000
commit9b2c2ec24d52cc3843e389a389a9b0e821daed9e (patch)
tree41ca4444eaa60f93f108f514bd6dc8f446a4552d /sys/dev
parent2792eea11fcd6c28a22d6d579ea68d9b5648f8fa (diff)
Add trailing ; to CFATTACH_DECL.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/aac_pci.c6
-rw-r--r--sys/dev/pci/adv_pci.c6
-rw-r--r--sys/dev/pci/adw_pci.c6
-rw-r--r--sys/dev/pci/agp.c6
-rw-r--r--sys/dev/pci/ahc_pci.c6
-rw-r--r--sys/dev/pci/amdpm.c6
-rw-r--r--sys/dev/pci/amr.c6
-rw-r--r--sys/dev/pci/auich.c6
-rw-r--r--sys/dev/pci/autri.c4
-rw-r--r--sys/dev/pci/auvia.c6
-rw-r--r--sys/dev/pci/bha_pci.c6
-rw-r--r--sys/dev/pci/btvmei.c6
-rw-r--r--sys/dev/pci/btvmeii.c6
-rw-r--r--sys/dev/pci/cac_pci.c6
-rw-r--r--sys/dev/pci/cmpci.c6
-rw-r--r--sys/dev/pci/com_puc.c6
-rw-r--r--sys/dev/pci/cs4280.c6
-rw-r--r--sys/dev/pci/cs4281.c6
-rw-r--r--sys/dev/pci/cy_pci.c6
-rw-r--r--sys/dev/pci/cz.c6
-rw-r--r--sys/dev/pci/dpt_pci.c6
-rw-r--r--sys/dev/pci/eap.c6
-rw-r--r--sys/dev/pci/ehci_pci.c6
-rw-r--r--sys/dev/pci/emuxki.c6
-rw-r--r--sys/dev/pci/esa.c4
-rw-r--r--sys/dev/pci/esiop_pci.c6
-rw-r--r--sys/dev/pci/esm.c6
-rw-r--r--sys/dev/pci/eso.c6
-rw-r--r--sys/dev/pci/fms.c6
-rw-r--r--sys/dev/pci/fwlynx_pci.c4
30 files changed, 87 insertions, 87 deletions
diff --git a/sys/dev/pci/aac_pci.c b/sys/dev/pci/aac_pci.c
index 244c3ef283b..b31610ea667 100644
--- a/sys/dev/pci/aac_pci.c
+++ b/sys/dev/pci/aac_pci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: aac_pci.c,v 1.5 2002/09/30 20:37:04 thorpej Exp $ */
+/* $NetBSD: aac_pci.c,v 1.6 2002/10/02 16:50:59 thorpej Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -72,7 +72,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aac_pci.c,v 1.5 2002/09/30 20:37:04 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aac_pci.c,v 1.6 2002/10/02 16:50:59 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -310,7 +310,7 @@ struct aac_ident {
};
CFATTACH_DECL(aac_pci, sizeof(struct aac_softc),
- aac_pci_match, aac_pci_attach, NULL, NULL)
+ aac_pci_match, aac_pci_attach, NULL, NULL);
const struct aac_ident *
aac_find_ident(struct pci_attach_args *pa)
diff --git a/sys/dev/pci/adv_pci.c b/sys/dev/pci/adv_pci.c
index 9b9d91d8163..6555d1fb6f1 100644
--- a/sys/dev/pci/adv_pci.c
+++ b/sys/dev/pci/adv_pci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: adv_pci.c,v 1.12 2002/09/30 20:37:05 thorpej Exp $ */
+/* $NetBSD: adv_pci.c,v 1.13 2002/10/02 16:50:59 thorpej Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc. All rights reserved.
@@ -63,7 +63,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: adv_pci.c,v 1.12 2002/09/30 20:37:05 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: adv_pci.c,v 1.13 2002/10/02 16:50:59 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -96,7 +96,7 @@ int adv_pci_match __P((struct device *, struct cfdata *, void *));
void adv_pci_attach __P((struct device *, struct device *, void *));
CFATTACH_DECL(adv_pci, sizeof(ASC_SOFTC),
- adv_pci_match, adv_pci_attach, NULL, NULL)
+ adv_pci_match, adv_pci_attach, NULL, NULL);
/******************************************************************************/
/*
diff --git a/sys/dev/pci/adw_pci.c b/sys/dev/pci/adw_pci.c
index 150e1df5928..e325fdd75ef 100644
--- a/sys/dev/pci/adw_pci.c
+++ b/sys/dev/pci/adw_pci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: adw_pci.c,v 1.12 2002/09/30 20:37:05 thorpej Exp $ */
+/* $NetBSD: adw_pci.c,v 1.13 2002/10/02 16:51:00 thorpej Exp $ */
/*
* Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
@@ -48,7 +48,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: adw_pci.c,v 1.12 2002/09/30 20:37:05 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: adw_pci.c,v 1.13 2002/10/02 16:51:00 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -82,7 +82,7 @@ static int adw_pci_match __P((struct device *, struct cfdata *, void *));
static void adw_pci_attach __P((struct device *, struct device *, void *));
CFATTACH_DECL(adw_pci, sizeof(ADW_SOFTC),
- adw_pci_match, adw_pci_attach, NULL, NULL)
+ adw_pci_match, adw_pci_attach, NULL, NULL);
/******************************************************************************/
/*
diff --git a/sys/dev/pci/agp.c b/sys/dev/pci/agp.c
index ee66d11f998..db0386efba5 100644
--- a/sys/dev/pci/agp.c
+++ b/sys/dev/pci/agp.c
@@ -1,4 +1,4 @@
-/* $NetBSD: agp.c,v 1.20 2002/09/30 20:37:05 thorpej Exp $ */
+/* $NetBSD: agp.c,v 1.21 2002/10/02 16:51:00 thorpej Exp $ */
/*-
* Copyright (c) 2000 Doug Rabson
@@ -65,7 +65,7 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: agp.c,v 1.20 2002/09/30 20:37:05 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: agp.c,v 1.21 2002/10/02 16:51:00 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -107,7 +107,7 @@ int agpmatch(struct device *, struct cfdata *, void *);
void agpattach(struct device *, struct device *, void *);
CFATTACH_DECL(agp, sizeof(struct agp_softc),
- agpmatch, agpattach, NULL, NULL)
+ agpmatch, agpattach, NULL, NULL);
static int agp_info_user(struct agp_softc *, agp_info *);
static int agp_setup_user(struct agp_softc *, agp_setup *);
diff --git a/sys/dev/pci/ahc_pci.c b/sys/dev/pci/ahc_pci.c
index 61b4dd5c257..6b0e8e20a25 100644
--- a/sys/dev/pci/ahc_pci.c
+++ b/sys/dev/pci/ahc_pci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ahc_pci.c,v 1.34 2002/09/30 20:37:06 thorpej Exp $ */
+/* $NetBSD: ahc_pci.c,v 1.35 2002/10/02 16:51:00 thorpej Exp $ */
/*
* Product specific probe and attach routines for:
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ahc_pci.c,v 1.34 2002/09/30 20:37:06 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ahc_pci.c,v 1.35 2002/10/02 16:51:00 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -565,7 +565,7 @@ void ahc_pci_attach __P((struct device *, struct device *, void *));
int ahc_pci_intr(struct ahc_softc *ahc);
CFATTACH_DECL(ahc_pci, sizeof(struct ahc_softc),
- ahc_pci_probe, ahc_pci_attach, NULL, NULL)
+ ahc_pci_probe, ahc_pci_attach, NULL, NULL);
static const struct ahc_pci_identity *
ahc_find_pci_device(id, subid)
diff --git a/sys/dev/pci/amdpm.c b/sys/dev/pci/amdpm.c
index afbfd125277..5f5f74e16ac 100644
--- a/sys/dev/pci/amdpm.c
+++ b/sys/dev/pci/amdpm.c
@@ -1,4 +1,4 @@
-/* $NetBSD: amdpm.c,v 1.3 2002/09/30 20:37:07 thorpej Exp $ */
+/* $NetBSD: amdpm.c,v 1.4 2002/10/02 16:51:01 thorpej Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: amdpm.c,v 1.3 2002/09/30 20:37:07 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: amdpm.c,v 1.4 2002/10/02 16:51:01 thorpej Exp $");
#include "opt_amdpm.h"
@@ -77,7 +77,7 @@ void amdpm_attach(struct device *, struct device *, void *);
void amdpm_rnd_callout(void *);
CFATTACH_DECL(amdpm, sizeof(struct amdpm_softc),
- amdpm_match, amdpm_attach, NULL, NULL)
+ amdpm_match, amdpm_attach, NULL, NULL);
#ifdef AMDPM_RND_COUNTERS
#define AMDPM_RNDCNT_INCR(ev) (ev)->ev_count++
diff --git a/sys/dev/pci/amr.c b/sys/dev/pci/amr.c
index f7fde0f1e9f..a4cbdd7ac2a 100644
--- a/sys/dev/pci/amr.c
+++ b/sys/dev/pci/amr.c
@@ -1,4 +1,4 @@
-/* $NetBSD: amr.c,v 1.5 2002/09/30 20:37:07 thorpej Exp $ */
+/* $NetBSD: amr.c,v 1.6 2002/10/02 16:51:02 thorpej Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -71,7 +71,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: amr.c,v 1.5 2002/09/30 20:37:07 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: amr.c,v 1.6 2002/10/02 16:51:02 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -121,7 +121,7 @@ static inline void amr_outb(struct amr_softc *, int, u_int8_t);
static inline void amr_outl(struct amr_softc *, int, u_int32_t);
CFATTACH_DECL(amr, sizeof(struct amr_softc),
- amr_match, amr_attach, NULL, NULL)
+ amr_match, amr_attach, NULL, NULL);
#define AT_QUARTZ 0x01 /* `Quartz' chipset */
#define AT_SIG 0x02 /* Check for signature */
diff --git a/sys/dev/pci/auich.c b/sys/dev/pci/auich.c
index 8ef01cdc4ae..9d018a1812d 100644
--- a/sys/dev/pci/auich.c
+++ b/sys/dev/pci/auich.c
@@ -1,4 +1,4 @@
-/* $NetBSD: auich.c,v 1.22 2002/09/30 20:37:08 thorpej Exp $ */
+/* $NetBSD: auich.c,v 1.23 2002/10/02 16:51:02 thorpej Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -114,7 +114,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: auich.c,v 1.22 2002/09/30 20:37:08 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: auich.c,v 1.23 2002/10/02 16:51:02 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -241,7 +241,7 @@ void auich_attach(struct device *, struct device *, void *);
int auich_intr(void *);
CFATTACH_DECL(auich, sizeof(struct auich_softc),
- auich_match, auich_attach, NULL, NULL)
+ auich_match, auich_attach, NULL, NULL);
int auich_open(void *, int);
void auich_close(void *);
diff --git a/sys/dev/pci/autri.c b/sys/dev/pci/autri.c
index 5c321afe5cb..52f090496c8 100644
--- a/sys/dev/pci/autri.c
+++ b/sys/dev/pci/autri.c
@@ -1,4 +1,4 @@
-/* $NetBSD: autri.c,v 1.7 2002/09/30 20:37:09 thorpej Exp $ */
+/* $NetBSD: autri.c,v 1.8 2002/10/02 16:51:03 thorpej Exp $ */
/*
* Copyright (c) 2001 SOMEYA Yoshihiko and KUROSAWA Takahiro.
@@ -115,7 +115,7 @@ static void autri_disable_loop_interrupt(void *sc);
#endif
CFATTACH_DECL(autri, sizeof(struct autri_softc),
- autri_match, autri_attach, NULL, NULL)
+ autri_match, autri_attach, NULL, NULL);
int autri_open(void *, int);
void autri_close(void *);
diff --git a/sys/dev/pci/auvia.c b/sys/dev/pci/auvia.c
index 97909595816..4b654679b81 100644
--- a/sys/dev/pci/auvia.c
+++ b/sys/dev/pci/auvia.c
@@ -1,4 +1,4 @@
-/* $NetBSD: auvia.c,v 1.20 2002/09/30 20:37:09 thorpej Exp $ */
+/* $NetBSD: auvia.c,v 1.21 2002/10/02 16:51:03 thorpej Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -47,7 +47,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: auvia.c,v 1.20 2002/09/30 20:37:09 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: auvia.c,v 1.21 2002/10/02 16:51:03 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -118,7 +118,7 @@ int auvia_trigger_input(void *, void *, void *, int, void (*)(void *),
int auvia_intr __P((void *));
CFATTACH_DECL(auvia, sizeof (struct auvia_softc),
- auvia_match, auvia_attach, NULL, NULL)
+ auvia_match, auvia_attach, NULL, NULL);
#define AUVIA_PCICONF_JUNK 0x40
#define AUVIA_PCICONF_ENABLES 0x00FF0000 /* reg 42 mask */
diff --git a/sys/dev/pci/bha_pci.c b/sys/dev/pci/bha_pci.c
index f2706de3a2d..3fc48082f0b 100644
--- a/sys/dev/pci/bha_pci.c
+++ b/sys/dev/pci/bha_pci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: bha_pci.c,v 1.23 2002/09/30 20:37:10 thorpej Exp $ */
+/* $NetBSD: bha_pci.c,v 1.24 2002/10/02 16:51:04 thorpej Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bha_pci.c,v 1.23 2002/09/30 20:37:10 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bha_pci.c,v 1.24 2002/10/02 16:51:04 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -61,7 +61,7 @@ int bha_pci_match __P((struct device *, struct cfdata *, void *));
void bha_pci_attach __P((struct device *, struct device *, void *));
CFATTACH_DECL(bha_pci, sizeof(struct bha_softc),
- bha_pci_match, bha_pci_attach, NULL, NULL)
+ bha_pci_match, bha_pci_attach, NULL, NULL);
/*
* Check the slots looking for a board we recognise
diff --git a/sys/dev/pci/btvmei.c b/sys/dev/pci/btvmei.c
index 7717692e710..f9631358a6b 100644
--- a/sys/dev/pci/btvmei.c
+++ b/sys/dev/pci/btvmei.c
@@ -1,4 +1,4 @@
-/* $NetBSD: btvmei.c,v 1.10 2002/09/30 20:37:10 thorpej Exp $ */
+/* $NetBSD: btvmei.c,v 1.11 2002/10/02 16:51:04 thorpej Exp $ */
/*
* Copyright (c) 1999
@@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: btvmei.c,v 1.10 2002/09/30 20:37:10 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: btvmei.c,v 1.11 2002/10/02 16:51:04 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -70,7 +70,7 @@ struct b3_617_vmeresc {
};
CFATTACH_DECL(btvmei, sizeof(struct b3_617_softc),
- b3_617_match, b3_617_attach, NULL, NULL)
+ b3_617_match, b3_617_attach, NULL, NULL);
static int
b3_617_match(parent, match, aux)
diff --git a/sys/dev/pci/btvmeii.c b/sys/dev/pci/btvmeii.c
index 973b568a96c..fc3b5ad9330 100644
--- a/sys/dev/pci/btvmeii.c
+++ b/sys/dev/pci/btvmeii.c
@@ -1,4 +1,4 @@
-/* $NetBSD: btvmeii.c,v 1.7 2002/09/30 20:37:11 thorpej Exp $ */
+/* $NetBSD: btvmeii.c,v 1.8 2002/10/02 16:51:04 thorpej Exp $ */
/*
* Copyright (c) 1999
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: btvmeii.c,v 1.7 2002/09/30 20:37:11 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: btvmeii.c,v 1.8 2002/10/02 16:51:04 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -122,7 +122,7 @@ struct b3_2706_softc {
};
CFATTACH_DECL(btvmeii, sizeof(struct b3_2706_softc),
- b3_2706_match, b3_2706_attach, NULL, NULL)
+ b3_2706_match, b3_2706_attach, NULL, NULL);
/*
* The adapter consists of a DEC PCI-PCI-bridge with two
diff --git a/sys/dev/pci/cac_pci.c b/sys/dev/pci/cac_pci.c
index 861bd762f49..4ce783467dd 100644
--- a/sys/dev/pci/cac_pci.c
+++ b/sys/dev/pci/cac_pci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: cac_pci.c,v 1.15 2002/09/30 20:37:11 thorpej Exp $ */
+/* $NetBSD: cac_pci.c,v 1.16 2002/10/02 16:51:05 thorpej Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cac_pci.c,v 1.15 2002/09/30 20:37:11 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cac_pci.c,v 1.16 2002/10/02 16:51:05 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -69,7 +69,7 @@ int cac_pci_l0_intr_pending(struct cac_softc *);
void cac_pci_l0_submit(struct cac_softc *, struct cac_ccb *);
CFATTACH_DECL(cac_pci, sizeof(struct cac_softc),
- cac_pci_match, cac_pci_attach, NULL, NULL)
+ cac_pci_match, cac_pci_attach, NULL, NULL);
static const struct cac_linkage cac_pci_l0 = {
cac_pci_l0_completed,
diff --git a/sys/dev/pci/cmpci.c b/sys/dev/pci/cmpci.c
index 83d9bce8a9f..1471d9b64ac 100644
--- a/sys/dev/pci/cmpci.c
+++ b/sys/dev/pci/cmpci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: cmpci.c,v 1.15 2002/09/30 20:37:11 thorpej Exp $ */
+/* $NetBSD: cmpci.c,v 1.16 2002/10/02 16:51:05 thorpej Exp $ */
/*
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
@@ -43,7 +43,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cmpci.c,v 1.15 2002/09/30 20:37:11 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cmpci.c,v 1.16 2002/10/02 16:51:05 thorpej Exp $");
#if defined(AUDIO_DEBUG) || defined(DEBUG)
#define DPRINTF(x) if (cmpcidebug) printf x
@@ -115,7 +115,7 @@ static int cmpci_match __P((struct device *, struct cfdata *, void *));
static void cmpci_attach __P((struct device *, struct device *, void *));
CFATTACH_DECL(cmpci, sizeof (struct cmpci_softc),
- cmpci_match, cmpci_attach, NULL, NULL)
+ cmpci_match, cmpci_attach, NULL, NULL);
/* interrupt */
static int cmpci_intr __P((void *));
diff --git a/sys/dev/pci/com_puc.c b/sys/dev/pci/com_puc.c
index 3db4150a4e5..9bddd7583f9 100644
--- a/sys/dev/pci/com_puc.c
+++ b/sys/dev/pci/com_puc.c
@@ -1,4 +1,4 @@
-/* $NetBSD: com_puc.c,v 1.6 2002/09/30 20:37:13 thorpej Exp $ */
+/* $NetBSD: com_puc.c,v 1.7 2002/10/02 16:51:06 thorpej Exp $ */
/*
* Copyright (c) 1998 Christopher G. Demetriou. All rights reserved.
@@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: com_puc.c,v 1.6 2002/09/30 20:37:13 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: com_puc.c,v 1.7 2002/10/02 16:51:06 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -63,7 +63,7 @@ int com_puc_probe __P((struct device *, struct cfdata *, void *));
void com_puc_attach __P((struct device *, struct device *, void *));
CFATTACH_DECL(com_puc, sizeof(struct com_puc_softc),
- com_puc_probe, com_puc_attach, NULL, NULL)
+ com_puc_probe, com_puc_attach, NULL, NULL);
int
com_puc_probe(parent, match, aux)
diff --git a/sys/dev/pci/cs4280.c b/sys/dev/pci/cs4280.c
index 71b25affd1b..4c8436c04a6 100644
--- a/sys/dev/pci/cs4280.c
+++ b/sys/dev/pci/cs4280.c
@@ -1,4 +1,4 @@
-/* $NetBSD: cs4280.c,v 1.22 2002/09/30 20:37:13 thorpej Exp $ */
+/* $NetBSD: cs4280.c,v 1.23 2002/10/02 16:51:07 thorpej Exp $ */
/*
* Copyright (c) 1999, 2000 Tatoku Ogaito. All rights reserved.
@@ -52,7 +52,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cs4280.c,v 1.22 2002/09/30 20:37:13 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cs4280.c,v 1.23 2002/10/02 16:51:07 thorpej Exp $");
#include "midi.h"
@@ -171,7 +171,7 @@ struct midi_hw_if cs4280_midi_hw_if = {
#endif
CFATTACH_DECL(clcs, sizeof(struct cs428x_softc),
- cs4280_match, cs4280_attach, NULL, NULL)
+ cs4280_match, cs4280_attach, NULL, NULL);
struct audio_device cs4280_device = {
"CS4280",
diff --git a/sys/dev/pci/cs4281.c b/sys/dev/pci/cs4281.c
index c57a8045d9c..3532eb61cfa 100644
--- a/sys/dev/pci/cs4281.c
+++ b/sys/dev/pci/cs4281.c
@@ -1,4 +1,4 @@
-/* $NetBSD: cs4281.c,v 1.12 2002/09/30 20:37:14 thorpej Exp $ */
+/* $NetBSD: cs4281.c,v 1.13 2002/10/02 16:51:07 thorpej Exp $ */
/*
* Copyright (c) 2000 Tatoku Ogaito. All rights reserved.
@@ -43,7 +43,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cs4281.c,v 1.12 2002/09/30 20:37:14 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cs4281.c,v 1.13 2002/10/02 16:51:07 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -152,7 +152,7 @@ struct midi_hw_if cs4281_midi_hw_if = {
#endif
CFATTACH_DECL(clct, sizeof(struct cs428x_softc),
- cs4281_match, cs4281_attach, NULL, NULL)
+ cs4281_match, cs4281_attach, NULL, NULL);
struct audio_device cs4281_device = {
"CS4281",
diff --git a/sys/dev/pci/cy_pci.c b/sys/dev/pci/cy_pci.c
index ee6616f335d..63b784eed3d 100644
--- a/sys/dev/pci/cy_pci.c
+++ b/sys/dev/pci/cy_pci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: cy_pci.c,v 1.15 2002/09/30 20:37:15 thorpej Exp $ */
+/* $NetBSD: cy_pci.c,v 1.16 2002/10/02 16:51:08 thorpej Exp $ */
/*
* cy_pci.c
@@ -10,7 +10,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cy_pci.c,v 1.15 2002/09/30 20:37:15 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cy_pci.c,v 1.16 2002/10/02 16:51:08 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -38,7 +38,7 @@ int cy_pci_match(struct device *, struct cfdata *, void *);
void cy_pci_attach(struct device *, struct device *, void *);
CFATTACH_DECL(cy_pci, sizeof(struct cy_pci_softc),
- cy_pci_match, cy_pci_attach, NULL, NULL)
+ cy_pci_match, cy_pci_attach, NULL, NULL);
static const struct cy_pci_product {
pci_product_id_t cp_product; /* product ID */
diff --git a/sys/dev/pci/cz.c b/sys/dev/pci/cz.c
index c817d38ab94..fe38c022a52 100644
--- a/sys/dev/pci/cz.c
+++ b/sys/dev/pci/cz.c
@@ -1,4 +1,4 @@
-/* $NetBSD: cz.c,v 1.22 2002/09/30 20:37:15 thorpej Exp $ */
+/* $NetBSD: cz.c,v 1.23 2002/10/02 16:51:08 thorpej Exp $ */
/*-
* Copyright (c) 2000 Zembu Labs, Inc.
@@ -73,7 +73,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cz.c,v 1.22 2002/09/30 20:37:15 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cz.c,v 1.23 2002/10/02 16:51:08 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -170,7 +170,7 @@ void cz_attach(struct device *, struct device *, void *);
int cz_wait_pci_doorbell(struct cz_softc *, const char *);
CFATTACH_DECL(cz, sizeof(struct cz_softc),
- cz_match, cz_attach, NULL, NULL)
+ cz_match, cz_attach, NULL, NULL);
void cz_reset_board(struct cz_softc *);
int cz_load_firmware(struct cz_softc *);
diff --git a/sys/dev/pci/dpt_pci.c b/sys/dev/pci/dpt_pci.c
index e38c317d7b5..4d3cd3adbc2 100644
--- a/sys/dev/pci/dpt_pci.c
+++ b/sys/dev/pci/dpt_pci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: dpt_pci.c,v 1.11 2002/09/30 20:37:16 thorpej Exp $ */
+/* $NetBSD: dpt_pci.c,v 1.12 2002/10/02 16:51:09 thorpej Exp $ */
/*
* Copyright (c) 1999, 2000, 2001 Andrew Doran <ad@netbsd.org>
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dpt_pci.c,v 1.11 2002/09/30 20:37:16 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dpt_pci.c,v 1.12 2002/10/02 16:51:09 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -58,7 +58,7 @@ static int dpt_pci_match(struct device *, struct cfdata *, void *);
static void dpt_pci_attach(struct device *, struct device *, void *);
CFATTACH_DECL(dpt_pci, sizeof(struct dpt_softc),
- dpt_pci_match, dpt_pci_attach, NULL, NULL)
+ dpt_pci_match, dpt_pci_attach, NULL, NULL);
static int
dpt_pci_match(struct device *parent, struct cfdata *match, void *aux)
diff --git a/sys/dev/pci/eap.c b/sys/dev/pci/eap.c
index 0c1d3f2660d..cffa79cac3b 100644
--- a/sys/dev/pci/eap.c
+++ b/sys/dev/pci/eap.c
@@ -1,4 +1,4 @@
-/* $NetBSD: eap.c,v 1.51 2002/09/30 20:37:16 thorpej Exp $ */
+/* $NetBSD: eap.c,v 1.52 2002/10/02 16:51:09 thorpej Exp $ */
/* $OpenBSD: eap.c,v 1.6 1999/10/05 19:24:42 csapuntz Exp $ */
/*
@@ -56,7 +56,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: eap.c,v 1.51 2002/09/30 20:37:16 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: eap.c,v 1.52 2002/10/02 16:51:09 thorpej Exp $");
#include "midi.h"
@@ -158,7 +158,7 @@ int eap_freemem(struct eap_softc *, struct eap_dma *);
#define EREAD4(sc, r) bus_space_read_4((sc)->iot, (sc)->ioh, (r))
CFATTACH_DECL(eap, sizeof(struct eap_softc),
- eap_match, eap_attach, NULL, NULL)
+ eap_match, eap_attach, NULL, NULL);
int eap_open(void *, int);
void eap_close(void *);
diff --git a/sys/dev/pci/ehci_pci.c b/sys/dev/pci/ehci_pci.c
index 570bd1117d6..c6d71de2146 100644
--- a/sys/dev/pci/ehci_pci.c
+++ b/sys/dev/pci/ehci_pci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ehci_pci.c,v 1.11 2002/09/30 20:37:18 thorpej Exp $ */
+/* $NetBSD: ehci_pci.c,v 1.12 2002/10/02 16:51:11 thorpej Exp $ */
/*
* Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci_pci.c,v 1.11 2002/09/30 20:37:18 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci_pci.c,v 1.12 2002/10/02 16:51:11 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -78,7 +78,7 @@ struct ehci_pci_softc {
};
CFATTACH_DECL(ehci_pci, sizeof(struct ehci_pci_softc),
- ehci_pci_match, ehci_pci_attach, ehci_pci_detach, ehci_activate)
+ ehci_pci_match, ehci_pci_attach, ehci_pci_detach, ehci_activate);
int
ehci_pci_match(struct device *parent, struct cfdata *match, void *aux)
diff --git a/sys/dev/pci/emuxki.c b/sys/dev/pci/emuxki.c
index 918e65477bf..aa4e24a37fa 100644
--- a/sys/dev/pci/emuxki.c
+++ b/sys/dev/pci/emuxki.c
@@ -1,4 +1,4 @@
-/* $NetBSD: emuxki.c,v 1.11 2002/09/30 20:37:18 thorpej Exp $ */
+/* $NetBSD: emuxki.c,v 1.12 2002/10/02 16:51:11 thorpej Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -57,7 +57,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: emuxki.c,v 1.11 2002/09/30 20:37:18 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: emuxki.c,v 1.12 2002/10/02 16:51:11 thorpej Exp $");
#include <sys/param.h>
#include <sys/device.h>
@@ -176,7 +176,7 @@ static enum ac97_host_flags emuxki_ac97_flags(void *);
* Autoconfig goo.
*/
CFATTACH_DECL(emuxki, sizeof(struct emuxki_softc),
- emuxki_match, emuxki_attach, emuxki_detach, NULL)
+ emuxki_match, emuxki_attach, emuxki_detach, NULL);
static struct audio_hw_if emuxki_hw_if = {
emuxki_open,
diff --git a/sys/dev/pci/esa.c b/sys/dev/pci/esa.c
index 7e86fbe4400..200780f72da 100644
--- a/sys/dev/pci/esa.c
+++ b/sys/dev/pci/esa.c
@@ -1,4 +1,4 @@
-/* $NetBSD: esa.c,v 1.16 2002/09/30 20:37:19 thorpej Exp $ */
+/* $NetBSD: esa.c,v 1.17 2002/10/02 16:51:12 thorpej Exp $ */
/*
* Copyright (c) 2001, 2002 Jared D. McNeill <jmcneill@invisible.ca>
@@ -209,7 +209,7 @@ struct audio_hw_if esa_hw_if = {
};
CFATTACH_DECL(esa, sizeof(struct esa_softc), esa_match, esa_attach,
- esa_detach, NULL)
+ esa_detach, NULL);
/*
* audio(9) functions
diff --git a/sys/dev/pci/esiop_pci.c b/sys/dev/pci/esiop_pci.c
index 628673a18c2..2782f460bdc 100644
--- a/sys/dev/pci/esiop_pci.c
+++ b/sys/dev/pci/esiop_pci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: esiop_pci.c,v 1.4 2002/09/30 20:37:20 thorpej Exp $ */
+/* $NetBSD: esiop_pci.c,v 1.5 2002/10/02 16:51:13 thorpej Exp $ */
/*
* Copyright (c) 2002 Manuel Bouyer.
@@ -32,7 +32,7 @@
/* SYM53c8xx PCI-SCSI I/O Processors driver: PCI front-end */
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: esiop_pci.c,v 1.4 2002/09/30 20:37:20 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: esiop_pci.c,v 1.5 2002/10/02 16:51:13 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -58,7 +58,7 @@ struct esiop_pci_softc {
};
CFATTACH_DECL(esiop_pci, sizeof(struct esiop_pci_softc),
- esiop_pci_match, esiop_pci_attach, NULL, NULL)
+ esiop_pci_match, esiop_pci_attach, NULL, NULL);
int
esiop_pci_match(parent, match, aux)
diff --git a/sys/dev/pci/esm.c b/sys/dev/pci/esm.c
index 632bf5f29b1..e05bdb890bc 100644
--- a/sys/dev/pci/esm.c
+++ b/sys/dev/pci/esm.c
@@ -1,4 +1,4 @@
-/* $NetBSD: esm.c,v 1.15 2002/09/30 20:37:20 thorpej Exp $ */
+/* $NetBSD: esm.c,v 1.16 2002/10/02 16:51:13 thorpej Exp $ */
/*-
* Copyright (c) 2000, 2001 Rene Hexel <rh@netbsd.org>
@@ -63,7 +63,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: esm.c,v 1.15 2002/09/30 20:37:20 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: esm.c,v 1.16 2002/10/02 16:51:13 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -145,7 +145,7 @@ static void esmch_set_format(struct esm_chinfo *,
void esm_powerhook(int, void *);
CFATTACH_DECL(esm, sizeof(struct esm_softc),
- esm_match, esm_attach, NULL, NULL)
+ esm_match, esm_attach, NULL, NULL);
struct audio_hw_if esm_hw_if = {
esm_open,
diff --git a/sys/dev/pci/eso.c b/sys/dev/pci/eso.c
index ddfd3cf4210..de3baaeb0a5 100644
--- a/sys/dev/pci/eso.c
+++ b/sys/dev/pci/eso.c
@@ -1,4 +1,4 @@
-/* $NetBSD: eso.c,v 1.26 2002/09/30 20:37:20 thorpej Exp $ */
+/* $NetBSD: eso.c,v 1.27 2002/10/02 16:51:14 thorpej Exp $ */
/*
* Copyright (c) 1999, 2000 Klaus J. Klein
@@ -33,7 +33,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: eso.c,v 1.26 2002/09/30 20:37:20 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: eso.c,v 1.27 2002/10/02 16:51:14 thorpej Exp $");
#include "mpu.h"
@@ -88,7 +88,7 @@ static void eso_defer __P((struct device *));
static int eso_print __P((void *, const char *));
CFATTACH_DECL(eso, sizeof (struct eso_softc),
- eso_match, eso_attach, NULL, NULL)
+ eso_match, eso_attach, NULL, NULL);
/* PCI interface */
static int eso_intr __P((void *));
diff --git a/sys/dev/pci/fms.c b/sys/dev/pci/fms.c
index cd6aea1096e..1560825d673 100644
--- a/sys/dev/pci/fms.c
+++ b/sys/dev/pci/fms.c
@@ -1,4 +1,4 @@
-/* $NetBSD: fms.c,v 1.14 2002/09/30 20:37:22 thorpej Exp $ */
+/* $NetBSD: fms.c,v 1.15 2002/10/02 16:51:14 thorpej Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fms.c,v 1.14 2002/09/30 20:37:22 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fms.c,v 1.15 2002/10/02 16:51:14 thorpej Exp $");
#include "mpu.h"
@@ -107,7 +107,7 @@ int fms_trigger_input __P((void *, void *, void *, int, void (*)(void *),
void *, struct audio_params *));
CFATTACH_DECL(fms, sizeof (struct fms_softc),
- fms_match, fms_attach, NULL, NULL)
+ fms_match, fms_attach, NULL, NULL);
struct audio_device fms_device = {
"Forte Media 801",
diff --git a/sys/dev/pci/fwlynx_pci.c b/sys/dev/pci/fwlynx_pci.c
index afc52a46ccb..44f732c5f0e 100644
--- a/sys/dev/pci/fwlynx_pci.c
+++ b/sys/dev/pci/fwlynx_pci.c
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fwlynx_pci.c,v 1.5 2002/09/30 20:37:23 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fwlynx_pci.c,v 1.6 2002/10/02 16:51:15 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -62,7 +62,7 @@ static int fwlynx_pci_match __P((struct device *, struct cfdata *, void *));
static void fwlynx_pci_attach __P((struct device *, struct device *, void *));
CFATTACH_DECL(fwlynx_pci, sizeof(struct fwlynx_pci_softc),
- fwlynx_pci_match, fwlynx_pci_attach, NULL, NULL)
+ fwlynx_pci_match, fwlynx_pci_attach, NULL, NULL);
static int
fwlynx_pci_match(struct device *parent, struct cfdata *match, void *aux)