summaryrefslogtreecommitdiff
path: root/sys/arch/sparc/dev/daadio.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/sparc/dev/daadio.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/arch/sparc/dev/daadio.c')
-rw-r--r--sys/arch/sparc/dev/daadio.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/sparc/dev/daadio.c b/sys/arch/sparc/dev/daadio.c
index 6ff4ba3757e..7d125a97e59 100644
--- a/sys/arch/sparc/dev/daadio.c
+++ b/sys/arch/sparc/dev/daadio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: daadio.c,v 1.1 1999/07/23 19:11:24 jason Exp $ */
+/* $OpenBSD: daadio.c,v 1.2 2002/03/14 01:26:42 millert Exp $ */
/*
* Copyright (c) 1999 Jason L. Wright (jason@thought.net)
@@ -59,9 +59,9 @@
#include <sparc/dev/fgavar.h>
#include <sparc/dev/daadioreg.h>
-int daadiomatch __P((struct device *, void *, void *));
-void daadioattach __P((struct device *, struct device *, void *));
-int daadiointr __P((void *));
+int daadiomatch(struct device *, void *, void *);
+void daadioattach(struct device *, struct device *, void *);
+int daadiointr(void *);
struct daadio_softc {
struct device sc_dv; /* base device */
@@ -78,8 +78,8 @@ struct cfdriver daadio_cd = {
NULL, "daadio", DV_DULL
};
-void daadio_ier_setbit __P((struct daadio_softc *, u_int8_t));
-void daadio_ier_clearbit __P((struct daadio_softc *, u_int8_t));
+void daadio_ier_setbit(struct daadio_softc *, u_int8_t);
+void daadio_ier_clearbit(struct daadio_softc *, u_int8_t);
int
daadiomatch(parent, vcf, aux)