diff options
author | briggs <briggs@cvs.openbsd.org> | 1997-03-12 13:37:02 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1997-03-12 13:37:02 +0000 |
commit | 8f99a2710ce0e52fc56f7952b4fb9d4e16ce96c7 (patch) | |
tree | 991a8092fe277fafe95f444a3bf8d84ac5b9ee3e /sys/arch/mac68k/dev/grf_mv.c | |
parent | a194f37816e1e5528129b12e336f3c88b1fea781 (diff) |
Remove some more warnings left over from NetBSD's new config.
Diffstat (limited to 'sys/arch/mac68k/dev/grf_mv.c')
-rw-r--r-- | sys/arch/mac68k/dev/grf_mv.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mac68k/dev/grf_mv.c b/sys/arch/mac68k/dev/grf_mv.c index febd98d1873..bfdc7f581e1 100644 --- a/sys/arch/mac68k/dev/grf_mv.c +++ b/sys/arch/mac68k/dev/grf_mv.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grf_mv.c,v 1.7 1997/03/08 16:16:51 briggs Exp $ */ +/* $OpenBSD: grf_mv.c,v 1.8 1997/03/12 13:36:57 briggs Exp $ */ /* $NetBSD: grf_mv.c,v 1.17 1997/02/24 06:20:06 scottr Exp $ */ /* @@ -60,7 +60,7 @@ static char zero = 0; static int grfmv_mode __P((struct grf_softc *gp, int cmd, void *arg)); static caddr_t grfmv_phys __P((struct grf_softc *gp, vm_offset_t addr)); -static int grfmv_match __P((struct device *, struct cfdata *, void *)); +static int grfmv_match __P((struct device *, void *, void *)); static void grfmv_attach __P((struct device *, struct device *, void *)); struct cfdriver macvid_cd = { @@ -162,9 +162,9 @@ grfmv_intr(vsc, slot) } static int -grfmv_match(parent, cf, aux) +grfmv_match(parent, vcf, aux) struct device *parent; - struct cfdata *cf; + void *vcf; void *aux; { struct nubus_attach_args *na = (struct nubus_attach_args *) aux; |