Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Oct 2008 01:40:57 +0900
From:      Norikatsu Shigemura <nork@FreeBSD.org>
To:        pyunyh@gmail.com
Cc:        freebsd-current@FreeBSD.org, Norikatsu Shigemura <nork@FreeBSD.org>
Subject:   Re: Call for axe(4) testers.
Message-ID:  <20081020014057.febeb458.nork@FreeBSD.org>
In-Reply-To: <20081003054756.GB71518@cdnetworks.co.kr>
References:  <20081003054756.GB71518@cdnetworks.co.kr>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 3 Oct 2008 14:47:56 +0900
Pyun YongHyeon <pyunyh@gmail.com> wrote:
> Attached file is fix for AX88178 USB Gigabit controller. The patch
> removed old hack to find the correct PHY address of controller and 
> it will affect all axe(4) controllers. If you have axe(4) hardware
> please give it try and let me know how it goes.

	Oops, why vsc8211 is vitesse's instead of cicada's? :-)

--- sys/dev/mii/miidevs.orig	2008-10-03 22:42:48.782036000 +0900
+++ sys/dev/mii/miidevs	2008-10-13 10:15:54.327650712 +0900
@@ -159,7 +159,7 @@
 model CICADA CS8201B		0x0021 Cicada CS8201 10/100/1000TX PHY
 model CICADA CS8244		0x002c Cicada CS8244 10/100/1000TX PHY
 model VITESSE VSC8601		0x0002 Vitesse VSC8601 10/100/1000TX PHY
-model VITESSE VSC8211		0x000b Vitesse VSC8211 10/100/1000TX PHY
+model CICADA VSC8211		0x000b Vitesse VSC8211 10/100/1000TX PHY
 
 /* Davicom Semiconductor PHYs */
 model DAVICOM DM9102		0x0004 DM9102 10/100 media interface
--- sys/dev/mii/ciphy.c.orig	2008-09-30 16:30:05.000000000 +0900
+++ sys/dev/mii/ciphy.c	2008-10-13 10:17:51.229601533 +0900
@@ -94,7 +94,7 @@
 	MII_PHY_DESC(CICADA, CS8204),
 	MII_PHY_DESC(CICADA, CS8244),
 	MII_PHY_DESC(VITESSE, VSC8601),
-	MII_PHY_DESC(VITESSE, VSC8211),
+	MII_PHY_DESC(CICADA, VSC8211),
 	MII_PHY_END
 };
 
@@ -425,7 +425,7 @@
 		break;
 	case MII_MODEL_CICADA_CS8244:
 	case MII_MODEL_VITESSE_VSC8601:
-	case MII_MODEL_VITESSE_VSC8211:
+	case MII_MODEL_CICADA_VSC8211:
 		break;
 	default:
 		device_printf(sc->mii_dev, "unknown CICADA PHY model %x\n",



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20081020014057.febeb458.nork>