summaryrefslogtreecommitdiff
path: root/sys/arch/mac68k/mac68k/fpu.c
diff options
context:
space:
mode:
authorgene <gene@cvs.openbsd.org>1997-03-11 21:03:05 +0000
committergene <gene@cvs.openbsd.org>1997-03-11 21:03:05 +0000
commitf1d001e6fcd8bdb74d98ca1547b99958b9d90102 (patch)
treed301498f711dd304730bc8401565a7dc7a9d3690 /sys/arch/mac68k/mac68k/fpu.c
parent07bc8fbe58820b758121b8f14b39b281dbaf6c40 (diff)
Second parameter of *match functions should be void (thank you ISA bus) and
*stop functions return int's under OpenBSD. This cleans up a bunch of compile-time warnings for the mac68k.
Diffstat (limited to 'sys/arch/mac68k/mac68k/fpu.c')
-rw-r--r--sys/arch/mac68k/mac68k/fpu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mac68k/mac68k/fpu.c b/sys/arch/mac68k/mac68k/fpu.c
index 904c34deadd..345d9ecb866 100644
--- a/sys/arch/mac68k/mac68k/fpu.c
+++ b/sys/arch/mac68k/mac68k/fpu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fpu.c,v 1.7 1997/01/24 01:35:45 briggs Exp $ */
+/* $OpenBSD: fpu.c,v 1.8 1997/03/11 21:03:04 gene Exp $ */
/* $NetBSD: fpu.c,v 1.21 1996/12/16 16:17:16 scottr Exp $ */
/*-
@@ -59,7 +59,7 @@ int fputype;
extern int *nofault;
-static int fpu_match __P((struct device *, struct cfdata *, void *));
+static int fpu_match __P((struct device *, void *, void *));
static void fpu_attach __P((struct device *, struct device *, void *));
static int fpu_probe __P((void));
@@ -74,7 +74,7 @@ struct cfdriver fpu_cd = {
static int
fpu_match(parent, cf, aux)
struct device *parent;
- struct cfdata *cf;
+ void *cf;
void *aux;
{
return 1;