diff options
| author | tsutsui <tsutsui@NetBSD.org> | 2002-09-29 17:15:59 +0000 |
|---|---|---|
| committer | tsutsui <tsutsui@NetBSD.org> | 2002-09-29 17:15:59 +0000 |
| commit | c90eeb8f06ae5b7b162abb99ce795dd31948dd9c (patch) | |
| tree | dbd04479b346517f98c0df3558832e2f523b1c3a /sys/dev | |
| parent | fd22a64c9388df8d1f33553186209210ad6a7159 (diff) | |
Call mb86960_attach() with MB86960_TYPE_86965 since
all FMV-18x have MB86964 or MB86965A, not MB86960,
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/isa/if_fmv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isa/if_fmv.c b/sys/dev/isa/if_fmv.c index a501a87b786..ca965174782 100644 --- a/sys/dev/isa/if_fmv.c +++ b/sys/dev/isa/if_fmv.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_fmv.c,v 1.29 2002/09/28 18:55:19 tsutsui Exp $ */ +/* $NetBSD: if_fmv.c,v 1.30 2002/09/29 17:15:59 tsutsui Exp $ */ /* * All Rights Reserved, Copyright (C) Fujitsu Limited 1995 @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_fmv.c,v 1.29 2002/09/28 18:55:19 tsutsui Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_fmv.c,v 1.30 2002/09/29 17:15:59 tsutsui Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -375,7 +375,7 @@ fmv_attach(parent, self, aux) /* * Do generic MB86960 attach. */ - mb86960_attach(sc, MB86960_TYPE_86960, myea); + mb86960_attach(sc, MB86960_TYPE_86965, myea); /* Is this really needs to be done here? XXX */ /* Turn the "master interrupt control" flag of ASIC on. */ |
