svn commit: r212020 - stable/7/sys/dev/mii

Pyun YongHyeon yongari at FreeBSD.org
Mon Aug 30 21:13:09 UTC 2010


Author: yongari
Date: Mon Aug 30 21:13:08 2010
New Revision: 212020
URL: http://svn.freebsd.org/changeset/base/212020

Log:
  MFC r211103:
    Add F1 PHY found on Atheros AR8151 v2.0 PCIe gigabit ethernet
    controller.

Modified:
  stable/7/sys/dev/mii/atphy.c
  stable/7/sys/dev/mii/miidevs
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/dev/mii/atphy.c
==============================================================================
--- stable/7/sys/dev/mii/atphy.c	Mon Aug 30 21:11:45 2010	(r212019)
+++ stable/7/sys/dev/mii/atphy.c	Mon Aug 30 21:13:08 2010	(r212020)
@@ -86,6 +86,7 @@ static int	atphy_auto(struct mii_softc *
 
 static const struct mii_phydesc atphys[] = {
 	MII_PHY_DESC(ATHEROS, F1),
+	MII_PHY_DESC(ATHEROS, F1_7),
 	MII_PHY_DESC(ATHEROS, F2),
 	MII_PHY_END
 };

Modified: stable/7/sys/dev/mii/miidevs
==============================================================================
--- stable/7/sys/dev/mii/miidevs	Mon Aug 30 21:11:45 2010	(r212019)
+++ stable/7/sys/dev/mii/miidevs	Mon Aug 30 21:13:08 2010	(r212020)
@@ -123,6 +123,7 @@ model xxAMD 79C873		0x0000 Am79C873/DM91
 /* Atheros Communications/Attansic PHYs. */
 model ATHEROS F1		0x0001 Atheros F1 10/100/1000 PHY
 model ATHEROS F2		0x0002 Atheros F2 10/100 PHY
+model ATHEROS F1_7		0x0007 Atheros F1 10/100/1000 PHY
 
 /* Broadcom Corp. PHYs. */
 model BROADCOM 3C905B		0x0012 3c905B 10/100 internal PHY


More information about the svn-src-all mailing list