svn commit: r227913 - head/sys/dev/mii

Marius Strobl marius at FreeBSD.org
Wed Nov 23 22:05:44 UTC 2011


Author: marius
Date: Wed Nov 23 22:05:44 2011
New Revision: 227913
URL: http://svn.freebsd.org/changeset/base/227913

Log:
  Wrap BCM5785 in #ifdef notyet for now. According to yongari@ there are
  issues probably needing workarounds in bge(4) when brgphy(4) handles this
  PHY. Letting ukphy(4) handle it instead results in a working configuration,
  although likely with performance penalties.

Modified:
  head/sys/dev/mii/brgphy.c

Modified: head/sys/dev/mii/brgphy.c
==============================================================================
--- head/sys/dev/mii/brgphy.c	Wed Nov 23 21:43:51 2011	(r227912)
+++ head/sys/dev/mii/brgphy.c	Wed Nov 23 22:05:44 2011	(r227913)
@@ -139,7 +139,9 @@ static const struct mii_phydesc brgphys[
 	MII_PHY_DESC(BROADCOM2, BCM5754),
 	MII_PHY_DESC(BROADCOM2, BCM5761),
 	MII_PHY_DESC(BROADCOM2, BCM5784),
+#ifdef notyet	/* better handled by ukphy(4) until WARs are implemented */
 	MII_PHY_DESC(BROADCOM2, BCM5785),
+#endif
 	MII_PHY_DESC(BROADCOM3, BCM5717C),
 	MII_PHY_DESC(BROADCOM3, BCM5719C),
 	MII_PHY_DESC(BROADCOM3, BCM5720C),


More information about the svn-src-all mailing list