From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932437AbVJSBeU (ORCPT ); Tue, 18 Oct 2005 21:34:20 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932451AbVJSBeM (ORCPT ); Tue, 18 Oct 2005 21:34:12 -0400 Received: from ra.tuxdriver.com ([24.172.12.4]:2564 "EHLO ra.tuxdriver.com") by vger.kernel.org with ESMTP id S932437AbVJSBdn (ORCPT ); Tue, 18 Oct 2005 21:33:43 -0400 Date: Tue, 18 Oct 2005 21:31:01 -0400 From: "John W. Linville" To: linux-kernel@vger.kernel.org, netdev@vger.kernel.org Cc: jgarzik@pobox.com Subject: [patch 2.6.14-rc3 2/3] sundance: probe PHYs from MII address 0 Message-ID: <10182005213101.12810@bilbo.tuxdriver.com> In-Reply-To: <10182005213101.12750@bilbo.tuxdriver.com> User-Agent: PatchPost/0.5 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Probe for PHYs starting at MII address 0 instead of MII address 1. This covers the entire range of MII addresses. Signed-off-by: John W. Linville --- drivers/net/sundance.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/sundance.c b/drivers/net/sundance.c --- a/drivers/net/sundance.c +++ b/drivers/net/sundance.c @@ -608,7 +608,7 @@ static int __devinit sundance_probe1 (st np->phys[0] = 1; /* Default setting */ np->mii_preamble_required++; - for (phy = 1; phy < 32 && phy_idx < MII_CNT; phy++) { + for (phy = 0; phy < 32 && phy_idx < MII_CNT; phy++) { int mii_status = mdio_read(dev, phy, MII_BMSR); if (mii_status != 0xffff && mii_status != 0x0000) { np->phys[phy_idx++] = phy;