Skip to content

Commit

Permalink
net/phy: Fix copper/fiber auto-selection for 88e1111
Browse files Browse the repository at this point in the history
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 <lark@linux.net.cn>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
  • Loading branch information
Wang Jian authored and Jeff Garzik committed Jul 22, 2008
1 parent c0e5a8c commit 9cf8fa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/phy/marvell.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 9cf8fa4

Please sign in to comment.