summaryrefslogtreecommitdiff
path: root/sys/dev/isa/pckbc_isa.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/dev/isa/pckbc_isa.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/dev/isa/pckbc_isa.c')
-rw-r--r--sys/dev/isa/pckbc_isa.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/isa/pckbc_isa.c b/sys/dev/isa/pckbc_isa.c
index e9d29939272..6bac96e1322 100644
--- a/sys/dev/isa/pckbc_isa.c
+++ b/sys/dev/isa/pckbc_isa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pckbc_isa.c,v 1.2 2001/07/08 06:41:38 fgsch Exp $ */
+/* $OpenBSD: pckbc_isa.c,v 1.3 2002/03/14 01:26:56 millert Exp $ */
/* $NetBSD: pckbc_isa.c,v 1.2 2000/03/23 07:01:35 thorpej Exp $ */
/*
@@ -50,8 +50,8 @@
#include <dev/ic/i8042reg.h>
#include <dev/ic/pckbcvar.h>
-int pckbc_isa_match __P((struct device *, void *, void *));
-void pckbc_isa_attach __P((struct device *, struct device *, void *));
+int pckbc_isa_match(struct device *, void *, void *);
+void pckbc_isa_attach(struct device *, struct device *, void *);
struct pckbc_isa_softc {
struct pckbc_softc sc_pckbc;
@@ -64,7 +64,7 @@ struct cfattach pckbc_isa_ca = {
sizeof(struct pckbc_isa_softc), pckbc_isa_match, pckbc_isa_attach,
};
-void pckbc_isa_intr_establish __P((struct pckbc_softc *, pckbc_slot_t));
+void pckbc_isa_intr_establish(struct pckbc_softc *, pckbc_slot_t);
int
pckbc_isa_match(parent, match, aux)