svn commit: r232139 - stable/7/sys/dev/mii
Marius Strobl
marius at FreeBSD.org
Sat Feb 25 00:41:39 UTC 2012
Author: marius
Date: Sat Feb 25 00:41:38 2012
New Revision: 232139
URL: http://svn.freebsd.org/changeset/base/232139
Log:
MFC: r231914
Probe the National DP83849, which is a dual-port version of the PHYTER.
Obtained from: NetBSD
Modified:
stable/7/sys/dev/mii/miidevs
stable/7/sys/dev/mii/nsphyter.c
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/miidevs
==============================================================================
--- stable/7/sys/dev/mii/miidevs Sat Feb 25 00:41:37 2012 (r232138)
+++ stable/7/sys/dev/mii/miidevs Sat Feb 25 00:41:38 2012 (r232139)
@@ -208,6 +208,7 @@ model NATSEMI DP83847 0x0003 DP83847 10
model NATSEMI DP83891 0x0005 DP83891 10/100/1000 media interface
model NATSEMI DP83861 0x0006 DP83861 10/100/1000 media interface
model NATSEMI DP83865 0x0007 DP83865 10/100/1000 media interface
+model NATSEMI DP83849 0x000a DP83849 10/100 media interface
/* Quality Semiconductor PHYs */
model QUALSEMI QS6612 0x0000 QS6612 10/100 media interface
Modified: stable/7/sys/dev/mii/nsphyter.c
==============================================================================
--- stable/7/sys/dev/mii/nsphyter.c Sat Feb 25 00:41:37 2012 (r232138)
+++ stable/7/sys/dev/mii/nsphyter.c Sat Feb 25 00:41:38 2012 (r232139)
@@ -58,8 +58,9 @@
__FBSDID("$FreeBSD$");
/*
- * driver for National Semiconductor's DP83843 `PHYTER' ethernet 10/100 PHY
- * Data Sheet available from www.national.com
+ * Driver for the National Semiconductor's DP83843, DP83847 and DP83849
+ * `PHYTER' Ethernet 10/100 PHYs
+ * Data Sheets are available from http://www.national.com
*
* We also support the DP83815 `MacPHYTER' internal PHY since, for our
* purposes, they are compatible.
@@ -114,6 +115,7 @@ static const struct mii_phydesc nsphyter
MII_PHY_DESC(NATSEMI, DP83815),
MII_PHY_DESC(NATSEMI, DP83843),
MII_PHY_DESC(NATSEMI, DP83847),
+ MII_PHY_DESC(NATSEMI, DP83849),
MII_PHY_END
};
More information about the svn-src-stable
mailing list