summaryrefslogtreecommitdiff
path: root/sys/arch/sparc/dev/tctrl.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/tctrl.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/arch/sparc/dev/tctrl.c')
-rw-r--r--sys/arch/sparc/dev/tctrl.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/sparc/dev/tctrl.c b/sys/arch/sparc/dev/tctrl.c
index 0c86714b7cb..108bfff17e3 100644
--- a/sys/arch/sparc/dev/tctrl.c
+++ b/sys/arch/sparc/dev/tctrl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tctrl.c,v 1.2 1999/09/07 12:36:20 jason Exp $ */
+/* $OpenBSD: tctrl.c,v 1.3 2002/03/14 01:26:43 millert Exp $ */
/* $NetBSD: tctrl.c,v 1.2 1999/08/11 00:46:06 matt Exp $ */
/*-
@@ -100,14 +100,14 @@ struct tctrl_softc {
struct evcnt sc_intrcnt; /* interrupt counting */
};
-int tctrl_match __P((struct device *, void *, void *));
-void tctrl_attach __P((struct device *, struct device *, void *));
+int tctrl_match(struct device *, void *, void *);
+void tctrl_attach(struct device *, struct device *, void *);
-void tctrl_write_data __P((struct tctrl_softc *, u_int8_t));
-u_int8_t tctrl_read_data __P((struct tctrl_softc *));
-int tctrl_intr __P((void *));
-void tctrl_setup_bitport __P((struct tctrl_softc *, int));
-void tctrl_process_response __P((struct tctrl_softc *));
+void tctrl_write_data(struct tctrl_softc *, u_int8_t);
+u_int8_t tctrl_read_data(struct tctrl_softc *);
+int tctrl_intr(void *);
+void tctrl_setup_bitport(struct tctrl_softc *, int);
+void tctrl_process_response(struct tctrl_softc *);
struct cfattach tctrl_ca = {
sizeof(struct tctrl_softc), tctrl_match, tctrl_attach