Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/mii - ICPLUS -> xxICPLUS



details:   https://anonhg.NetBSD.org/src/rev/fb06c004ee18
branches:  trunk
changeset: 459642:fb06c004ee18
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Thu Sep 19 14:41:28 2019 +0000

description:
- ICPLUS -> xxICPLUS
- Print model name if it's ICPLUS IP101 to avoid "Realtek internal PHY".

diffstat:

 sys/dev/mii/rlphy.c |  9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diffs (37 lines):

diff -r b6c9556110a1 -r fb06c004ee18 sys/dev/mii/rlphy.c
--- a/sys/dev/mii/rlphy.c       Thu Sep 19 14:39:08 2019 +0000
+++ b/sys/dev/mii/rlphy.c       Thu Sep 19 14:41:28 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rlphy.c,v 1.36 2019/03/25 09:20:46 msaitoh Exp $       */
+/*     $NetBSD: rlphy.c,v 1.37 2019/09/19 14:41:28 msaitoh Exp $       */
 /*     $OpenBSD: rlphy.c,v 1.20 2005/07/31 05:27:30 pvalchev Exp $     */
 
 /*
@@ -38,7 +38,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rlphy.c,v 1.36 2019/03/25 09:20:46 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rlphy.c,v 1.37 2019/09/19 14:41:28 msaitoh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -78,7 +78,7 @@
 static const struct mii_phydesc rlphys[] = {
        MII_PHY_DESC(yyREALTEK, RTL8201L),
        MII_PHY_DESC(REALTEK, RTL8201E),
-       MII_PHY_DESC(ICPLUS, IP101),
+       MII_PHY_DESC(xxICPLUS, IP101),
        MII_PHY_END,
 };
 
@@ -125,6 +125,9 @@
                rsc->sc_rtl8201 = 1;
                aprint_normal(": %s, rev. %d\n", MII_STR_REALTEK_RTL8201E,
                    MII_REV(ma->mii_id2));
+       } else if (MII_MODEL(ma->mii_id2) == MII_MODEL_xxICPLUS_IP101) {
+               aprint_normal(": %s, rev. %d\n", MII_STR_xxICPLUS_IP101,
+                   MII_REV(ma->mii_id2));
        } else
                aprint_normal(": Realtek internal PHY\n");
 



Home | Main Index | Thread Index | Old Index