Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev Allied-Telesyn AT-1700xT and Allied-Telesis RE200x a...



details:   https://anonhg.NetBSD.org/src/rev/990e4c4bd88e
branches:  trunk
changeset: 537706:990e4c4bd88e
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Fri Oct 04 21:19:34 2002 +0000

description:
Allied-Telesyn AT-1700xT and Allied-Telesis RE200x are actually identical,
so show both names in attachment. (From FreeBSD's if_fe_isa.c)

diffstat:

 sys/dev/ic/mb86960var.h |   4 ++--
 sys/dev/isa/if_ate.c    |  18 +++++++++---------
 2 files changed, 11 insertions(+), 11 deletions(-)

diffs (71 lines):

diff -r 933eac581580 -r 990e4c4bd88e sys/dev/ic/mb86960var.h
--- a/sys/dev/ic/mb86960var.h   Fri Oct 04 21:11:27 2002 +0000
+++ b/sys/dev/ic/mb86960var.h   Fri Oct 04 21:19:34 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mb86960var.h,v 1.29 2002/10/04 15:22:30 tsutsui Exp $  */
+/*     $NetBSD: mb86960var.h,v 1.30 2002/10/04 21:19:34 tsutsui Exp $  */
 
 /*
  * All Rights Reserved, Copyright (C) Fujitsu Limited 1995
@@ -113,7 +113,7 @@
        FE_TYPE_AT1700BT,
        FE_TYPE_AT1700FT,
        FE_TYPE_AT1700AT,
-       FE_TYPE_RE2000,
+       FE_TYPE_AT_UNKNOWN,
 
        /* PCMCIA by Fujitsu. */
        FE_TYPE_MBH10302,
diff -r 933eac581580 -r 990e4c4bd88e sys/dev/isa/if_ate.c
--- a/sys/dev/isa/if_ate.c      Fri Oct 04 21:11:27 2002 +0000
+++ b/sys/dev/isa/if_ate.c      Fri Oct 04 21:19:34 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_ate.c,v 1.36 2002/10/04 15:22:30 tsutsui Exp $      */
+/*     $NetBSD: if_ate.c,v 1.37 2002/10/04 21:19:35 tsutsui Exp $      */
 
 /*
  * All Rights Reserved, Copyright (C) Fujitsu Limited 1995
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ate.c,v 1.36 2002/10/04 15:22:30 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ate.c,v 1.37 2002/10/04 21:19:35 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -354,7 +354,7 @@
                type = FE_TYPE_AT1700AT;
                break;
        default:
-               type = FE_TYPE_RE2000;
+               type = FE_TYPE_AT_UNKNOWN;
                break;
        }
 
@@ -390,19 +390,19 @@
        type = ate_detect(iot, ioh, myea);
        switch (type) {
        case FE_TYPE_AT1700T:
-               typestr = "AT-1700T";
+               typestr = "AT-1700T/RE2001";
                break;
        case FE_TYPE_AT1700BT:
-               typestr = "AT-1700BT";
+               typestr = "AT-1700BT/RE2003";
                break;
        case FE_TYPE_AT1700FT:
-               typestr = "AT-1700FT";
+               typestr = "AT-1700FT/RE2009";
                break;
        case FE_TYPE_AT1700AT:
-               typestr = "AT-1700AT";
+               typestr = "AT-1700AT/RE2005";
                break;
-       case FE_TYPE_RE2000:
-               typestr = "unknown (RE-2000?)";
+       case FE_TYPE_AT_UNKNOWN:
+               typestr = "unknown AT-1700/RE2000";
                break;
 
        default:



Home | Main Index | Thread Index | Old Index