Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/mii disable the entry for Marvell E1149 for now sinc...



details:   https://anonhg.NetBSD.org/src/rev/99276205987e
branches:  trunk
changeset: 772912:99276205987e
user:      chs <chs%NetBSD.org@localhost>
date:      Sat Jan 21 16:48:08 2012 +0000

description:
disable the entry for Marvell E1149 for now since this driver doesn't work
with some instances of this hardware (in particular, the ones on the
motherboard of an HP XW9400 workstation, which is supposedly a Tyan S2915).
ukphy works fine for this.

diffstat:

 sys/dev/mii/makphy.c |  7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diffs (30 lines):

diff -r 359bea38dd48 -r 99276205987e sys/dev/mii/makphy.c
--- a/sys/dev/mii/makphy.c      Sat Jan 21 16:38:41 2012 +0000
+++ b/sys/dev/mii/makphy.c      Sat Jan 21 16:48:08 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: makphy.c,v 1.36 2011/11/12 11:10:49 sekiya Exp $       */
+/*     $NetBSD: makphy.c,v 1.37 2012/01/21 16:48:08 chs Exp $  */
 
 /*-
  * Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
@@ -59,7 +59,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: makphy.c,v 1.36 2011/11/12 11:10:49 sekiya Exp $");
+__KERNEL_RCSID(0, "$NetBSD: makphy.c,v 1.37 2012/01/21 16:48:08 chs Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -101,8 +101,11 @@
        { MII_OUI_xxMARVELL,            MII_MODEL_xxMARVELL_E1011,
          MII_STR_xxMARVELL_E1011 },
 
+#if 0
+/* doesn't work on eg. HP XW9400 */
        { MII_OUI_xxMARVELL,            MII_MODEL_xxMARVELL_E1149,
          MII_STR_xxMARVELL_E1149 },
+#endif
 
        { MII_OUI_xxMARVELL,            MII_MODEL_xxMARVELL_E1111,
          MII_STR_xxMARVELL_E1111 },



Home | Main Index | Thread Index | Old Index