aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/phy
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2012-07-04 00:33:57 +0000
committerDavid S. Miller <davem@davemloft.net>2012-07-09 00:09:20 -0700
commit567990cfccafc580b03b1fb501adf63132c12dcc (patch)
tree60829451301a2c7b49827f9a80d5de1d0c97ccfe /drivers/net/phy
parentsky2: Fix for interrupt handler (diff)
downloadlinux-dev-567990cfccafc580b03b1fb501adf63132c12dcc.tar.xz
linux-dev-567990cfccafc580b03b1fb501adf63132c12dcc.zip
bcm87xx: disable autonegotiation by default
The bcm87xx phys don't support autonegotiation, so don't use it by default, as otherwise phy_state_machine() will try to enable it (using c22 requests, which also don't make any sense for the bcm78xx). Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r--drivers/net/phy/bcm87xx.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/phy/bcm87xx.c b/drivers/net/phy/bcm87xx.c
index f5f0562934db..9a90dcf31156 100644
--- a/drivers/net/phy/bcm87xx.c
+++ b/drivers/net/phy/bcm87xx.c
@@ -89,6 +89,7 @@ static int bcm87xx_config_init(struct phy_device *phydev)
phydev->supported = SUPPORTED_10000baseR_FEC;
phydev->advertising = ADVERTISED_10000baseR_FEC;
phydev->state = PHY_NOLINK;
+ phydev->autoneg = AUTONEG_DISABLE;
bcm87xx_of_reg_init(phydev);