The patch titled IP100A: Change PHY address search from phy=1 to phy=0 has been removed from the -mm tree. Its filename is ip100a-change-phy-address-search-from-phy=1-to-phy=0.patch This patch was dropped because it's a mess ------------------------------------------------------ Subject: IP100A: Change PHY address search from phy=1 to phy=0 From: Jesse Huang <jesse@xxxxxxxxxxxxx> Change PHY address search from phy=1 to phy=0 Signed-off-by: Jesse Huang <jesse@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/sundance.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/net/sundance.c~ip100a-change-phy-address-search-from-phy=1-to-phy=0 drivers/net/sundance.c --- a/drivers/net/sundance.c~ip100a-change-phy-address-search-from-phy=1-to-phy=0 +++ a/drivers/net/sundance.c @@ -562,8 +562,9 @@ static int __devinit sundance_probe1 (st /* * It seems some phys doesn't deal well with address 0 being accessed * first, so leave address zero to the end of the loop (32 & 31). + * for IP100A the phy should start from 0 */ - for (phy = 1; phy <= 32 && phy_idx < MII_CNT; phy++) { + for (phy = 0; phy <= 32 && phy_idx < MII_CNT; phy++) { int phyx = phy & 0x1f; int mii_status = mdio_read(dev, phyx, MII_BMSR); if (mii_status != 0xffff && mii_status != 0x0000) { _ Patches currently in -mm which might be from jesse@xxxxxxxxxxxxx are ip100a-fix-tx-pause-bug-reset_tx-intr_handler.patch ip100a-change-phy-address-search-from-phy=1-to-phy=0.patch ip100a-correct-initial-and-close-hardware-step.patch ip100a-solve-host-error-problem-in-low-performance.patch sundance-restore-the-original-tx-fifo-overflow-process.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html