summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k/dev/fooip.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/mvme68k/dev/fooip.c')
-rw-r--r--sys/arch/mvme68k/dev/fooip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mvme68k/dev/fooip.c b/sys/arch/mvme68k/dev/fooip.c
index 4d27d78da48..4edd4024a01 100644
--- a/sys/arch/mvme68k/dev/fooip.c
+++ b/sys/arch/mvme68k/dev/fooip.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fooip.c,v 1.4 2000/03/26 23:31:59 deraadt Exp $ */
+/* $OpenBSD: fooip.c,v 1.5 2002/03/14 01:26:37 millert Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -64,8 +64,8 @@ struct fooipsoftc {
struct fooipregs *sc_regs;
};
-void fooipattach __P((struct device *, struct device *, void *));
-int fooipmatch __P((struct device *, void *, void *));
+void fooipattach(struct device *, struct device *, void *);
+int fooipmatch(struct device *, void *, void *);
struct cfattach fooip_ca = {
sizeof(struct fooipsoftc), fooipmatch, fooipattach
@@ -75,7 +75,7 @@ struct cfdriver fooip_cd = {
NULL, "fooip", DV_DULL, 0
};
-int fooipintr __P((void *));
+int fooipintr(void *);
int
fooipmatch(parent, cf, args)