net/phy: Fix copper/fiber auto-selection for 88e1111
authorWang Jian <[email protected]>
Wed, 16 Jul 2008 13:46:17 +0000 (21:46 +0800)
committerJeff Garzik <[email protected]>
Tue, 22 Jul 2008 21:58:10 +0000 (17:58 -0400)
The 27.15 bit (MII_M1111_HWCFG_FIBER_COPPER_AUTO) is disable bit. When
set to 1, copper/fiber auto selection is disabled. The current code
to enable but actually disable auto selection.

Signed-off-by: Wang Jian <[email protected]>
Signed-off-by: Jeff Garzik <[email protected]>
drivers/net/phy/marvell.c

index 32a8503a7acdc3ade6fcb1fd656a2009ec9eda09..737512c00971dbe722252405c95a9eec51d2576b 100644 (file)
@@ -162,7 +162,7 @@ static int m88e1111_config_init(struct phy_device *phydev)
 
        /* Enable Fiber/Copper auto selection */
        temp = phy_read(phydev, MII_M1111_PHY_EXT_SR);
-       temp |= MII_M1111_HWCFG_FIBER_COPPER_AUTO;
+       temp &= ~MII_M1111_HWCFG_FIBER_COPPER_AUTO;
        phy_write(phydev, MII_M1111_PHY_EXT_SR, temp);
 
        temp = phy_read(phydev, MII_BMCR);