diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/vax/bi | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/vax/bi')
-rw-r--r-- | sys/arch/vax/bi/bi.c | 8 | ||||
-rw-r--r-- | sys/arch/vax/bi/bivar.h | 4 | ||||
-rw-r--r-- | sys/arch/vax/bi/kdb.c | 18 |
3 files changed, 15 insertions, 15 deletions
diff --git a/sys/arch/vax/bi/bi.c b/sys/arch/vax/bi/bi.c index 9c2414abee5..8b8c55bca44 100644 --- a/sys/arch/vax/bi/bi.c +++ b/sys/arch/vax/bi/bi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bi.c,v 1.2 1997/05/29 00:04:16 niklas Exp $ */ +/* $OpenBSD: bi.c,v 1.3 2002/03/14 01:26:47 millert Exp $ */ /* $NetBSD: bi.c,v 1.4 1996/10/13 03:34:44 christos Exp $ */ /* * Copyright (c) 1996 Ludd, University of Lule}, Sweden. @@ -51,9 +51,9 @@ #include <arch/vax/bi/bireg.h> #include <arch/vax/bi/bivar.h> -static int bi_match __P((struct device *, void *, void *)); -static void bi_attach __P((struct device *, struct device *, void*)); -static int bi_print __P((void *, const char *)); +static int bi_match(struct device *, void *, void *); +static void bi_attach(struct device *, struct device *, void*); +static int bi_print(void *, const char *); struct cfdriver bi_cd = { NULL, "bi", DV_DULL diff --git a/sys/arch/vax/bi/bivar.h b/sys/arch/vax/bi/bivar.h index 6ee0c4cf91b..53af17b53d4 100644 --- a/sys/arch/vax/bi/bivar.h +++ b/sys/arch/vax/bi/bivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bivar.h,v 1.3 2000/04/28 03:42:39 bjc Exp $ */ +/* $OpenBSD: bivar.h,v 1.4 2002/03/14 01:26:47 millert Exp $ */ /* $NetBSD: bivar.h,v 1.5 2000/03/26 11:45:04 ragge Exp $ */ /* * Copyright (c) 1996, 1999 Ludd, University of Lule}, Sweden. @@ -70,5 +70,5 @@ struct bi_list { }; /* Prototype */ -void bi_attach __P((struct bi_softc *)); +void bi_attach(struct bi_softc *); void bi_intr_establish __P((void *, int, void (*)(void *), void *)); diff --git a/sys/arch/vax/bi/kdb.c b/sys/arch/vax/bi/kdb.c index 59fc4bc72c8..0362e0958ca 100644 --- a/sys/arch/vax/bi/kdb.c +++ b/sys/arch/vax/bi/kdb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kdb.c,v 1.5 2001/11/06 19:53:17 miod Exp $ */ +/* $OpenBSD: kdb.c,v 1.6 2002/03/14 01:26:47 millert Exp $ */ /* $NetBSD: kdb.c,v 1.5 1997/01/11 11:34:39 ragge Exp $ */ /* * Copyright (c) 1996 Ludd, University of Lule}, Sweden. @@ -76,14 +76,14 @@ struct kdb_softc { struct mscp *sc_mscp; /* Keep pointer to active mscp */ }; -int kdbmatch __P((struct device *, void *, void *)); -void kdbattach __P((struct device *, struct device *, void *)); -void kdbreset __P((int)); -void kdbintr __P((int)); -void kdbctlrdone __P((struct device *, int)); -int kdbprint __P((void *, const char *)); -void kdbsaerror __P((struct device *, int)); -int kdbgo __P((struct device *, struct buf *)); +int kdbmatch(struct device *, void *, void *); +void kdbattach(struct device *, struct device *, void *); +void kdbreset(int); +void kdbintr(int); +void kdbctlrdone(struct device *, int); +int kdbprint(void *, const char *); +void kdbsaerror(struct device *, int); +int kdbgo(struct device *, struct buf *); struct cfdriver kdb_cd = { NULL, "kdb", DV_DULL |