summaryrefslogtreecommitdiff
path: root/sys/dev/tc/if_le_dec.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/tc/if_le_dec.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/dev/tc/if_le_dec.c')
-rw-r--r--sys/dev/tc/if_le_dec.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/tc/if_le_dec.c b/sys/dev/tc/if_le_dec.c
index b6b937684c2..68a96fbeb6f 100644
--- a/sys/dev/tc/if_le_dec.c
+++ b/sys/dev/tc/if_le_dec.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_le_dec.c,v 1.4 1998/09/16 22:41:21 jason Exp $ */
+/* $OpenBSD: if_le_dec.c,v 1.5 2002/03/14 01:27:03 millert Exp $ */
/* $NetBSD: if_le_dec.c,v 1.3 1996/10/13 01:38:38 christos Exp $ */
/*-
@@ -64,12 +64,12 @@
#include <dev/tc/tcvar.h>
/* access LANCE registers */
-void le_dec_writereg __P((volatile u_short *regptr, u_short val));
+void le_dec_writereg(volatile u_short *regptr, u_short val);
#define LERDWR(cntl, src, dst) { (dst) = (src); tc_mb(); }
#define LEWREG(src, dst) le_dec_writereg(&(dst), (src))
-hide void le_dec_wrcsr __P((struct am7990_softc *, u_int16_t, u_int16_t));
-hide u_int16_t le_dec_rdcsr __P((struct am7990_softc *, u_int16_t));
+hide void le_dec_wrcsr(struct am7990_softc *, u_int16_t, u_int16_t);
+hide u_int16_t le_dec_rdcsr(struct am7990_softc *, u_int16_t);
void
dec_le_common_attach(sc, eap)