Module Name:    src
Committed By:   kml
Date:           Thu Aug  6 04:58:48 UTC 2009

Modified Files:
        src/sys/dev/mii: igphy.c

Log Message:
Later generation 82566 IGP PHYs have problems with media changes to 100Mb and
10Mb; it appears that the SmartSpeed workaround and dspcode in this PHY are
aimed at earlier generation IGPs.  Remove reference to 82566s, allowing
them to fall through to choose other PHYs.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/mii/igphy.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/mii/igphy.c
diff -u src/sys/dev/mii/igphy.c:1.17 src/sys/dev/mii/igphy.c:1.18
--- src/sys/dev/mii/igphy.c:1.17	Mon Nov 17 03:04:27 2008
+++ src/sys/dev/mii/igphy.c	Thu Aug  6 04:58:48 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: igphy.c,v 1.17 2008/11/17 03:04:27 dyoung Exp $	*/
+/*	$NetBSD: igphy.c,v 1.18 2009/08/06 04:58:48 kml Exp $	*/
 
 /*
  * The Intel copyright applies to the analog register setup, and the
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: igphy.c,v 1.17 2008/11/17 03:04:27 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: igphy.c,v 1.18 2009/08/06 04:58:48 kml Exp $");
 
 #include "opt_mii.h"
 
@@ -116,9 +116,6 @@
 	{ MII_OUI_yyINTEL,		MII_MODEL_yyINTEL_IGP01E1000,
 	  MII_STR_yyINTEL_IGP01E1000 },
 
-	{ MII_OUI_yyINTEL,		MII_MODEL_yyINTEL_I82566,
-	  MII_STR_yyINTEL_I82566 },
-
 	{0,				0,
 	 NULL },
 };

Reply via email to