summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/dev/bussw.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
commit8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch)
treeac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/mvme88k/dev/bussw.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/arch/mvme88k/dev/bussw.c')
-rw-r--r--sys/arch/mvme88k/dev/bussw.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/mvme88k/dev/bussw.c b/sys/arch/mvme88k/dev/bussw.c
index 1e14a411627..998146ffdf6 100644
--- a/sys/arch/mvme88k/dev/bussw.c
+++ b/sys/arch/mvme88k/dev/bussw.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bussw.c,v 1.5 2002/03/05 22:11:37 miod Exp $ */
+/* $OpenBSD: bussw.c,v 1.6 2002/03/14 01:26:39 millert Exp $ */
/*
* Copyright (c) 1999 Steve Murphree, Jr.
@@ -56,8 +56,8 @@ struct bussw_softc {
struct bussw_reg *sc_bussw;
};
-void bussw_attach __P((struct device *, struct device *, void *));
-int bussw_match __P((struct device *, void *, void *));
+void bussw_attach(struct device *, struct device *, void *);
+int bussw_match(struct device *, void *, void *);
struct cfattach bussw_ca = {
sizeof(struct bussw_softc), bussw_match, bussw_attach
@@ -67,9 +67,9 @@ struct cfdriver bussw_cd = {
NULL, "bussw", DV_DULL, 0
};
-int bussw_print __P((void *args, const char *bus));
-int bussw_scan __P((struct device *parent, void *child, void *args));
-int busswabort __P((void *));
+int bussw_print(void *args, const char *bus);
+int bussw_scan(struct device *parent, void *child, void *args);
+int busswabort(void *);
int
bussw_match(parent, vcf, args)