diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2009-04-29 04:20:37 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-04-29 20:32:37 -0400 |
commit | 3f926da82f128c68c479247b1771729b9487502a (patch) | |
tree | c55d11e34dc361895a618afa128077176915dc06 /drivers/net/sfc/ethtool.c | |
parent | af2a3eac2fe6a6d8e9fdf6927284b34466a7d808 (diff) |
sfc: Use generic MDIO flow control auto-negotiation functions
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sfc/ethtool.c')
-rw-r--r-- | drivers/net/sfc/ethtool.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/sfc/ethtool.c b/drivers/net/sfc/ethtool.c index 1c7b6849fe01..997ea2a3d53f 100644 --- a/drivers/net/sfc/ethtool.c +++ b/drivers/net/sfc/ethtool.c | |||
@@ -711,7 +711,8 @@ static int efx_ethtool_set_pauseparam(struct net_device *net_dev, | |||
711 | mutex_lock(&efx->mac_lock); | 711 | mutex_lock(&efx->mac_lock); |
712 | 712 | ||
713 | efx->wanted_fc = wanted_fc; | 713 | efx->wanted_fc = wanted_fc; |
714 | efx_mdio_set_pause(efx); | 714 | if (efx->phy_op->mmds & MDIO_DEVS_AN) |
715 | mdio45_ethtool_spauseparam_an(&efx->mdio, pause); | ||
715 | __efx_reconfigure_port(efx); | 716 | __efx_reconfigure_port(efx); |
716 | 717 | ||
717 | mutex_unlock(&efx->mac_lock); | 718 | mutex_unlock(&efx->mac_lock); |