diff options
-rw-r--r-- | sys/dev/ic/ne2000.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sys/dev/ic/ne2000.c b/sys/dev/ic/ne2000.c index cd6906f2591..e49dd3e2f81 100644 --- a/sys/dev/ic/ne2000.c +++ b/sys/dev/ic/ne2000.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ne2000.c,v 1.9 2001/03/12 05:36:58 aaron Exp $ */ +/* $OpenBSD: ne2000.c,v 1.10 2001/03/13 06:02:00 aaron Exp $ */ /* $NetBSD: ne2000.c,v 1.12 1998/06/10 01:15:50 thorpej Exp $ */ /*- @@ -157,8 +157,7 @@ ne2000_attach(nsc, myea) dsc->sc_reg_map[i] = i; /* - * 8k of memory for NE1000, 16k for NE2000 and 24k for the - * card uses DL10019. + * 8k of memory for NE1000, 16k otherwise. */ switch (nsc->sc_type) { case NE2000_TYPE_NE1000: @@ -166,10 +165,8 @@ ne2000_attach(nsc, myea) break; case NE2000_TYPE_NE2000: case NE2000_TYPE_AX88190: /* XXX really? */ - memsize = 8192 * 2; - break; case NE2000_TYPE_DL10019: - memsize = 8192 * 3; + memsize = 8192 * 2; break; } |