diff options
| author | David Thomson <[email protected]> | 2015-07-10 13:56:54 +1200 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2015-07-10 23:17:32 -0700 |
| commit | 634ec36cc0ab9d8dda0f2c101fa28d2e2a61b9eb (patch) | |
| tree | 77787306c4bc5b6d4937dd5e705b42a96fee5ac4 /drivers/net/phy/phy.c | |
| parent | a4e2405cc5d20ed6d58c4874325856e80e76a7f8 (diff) | |
net: phy: Pass mdix ethtool setting through to phy driver
Pass the mdix setting from ethtool down to the phy driver, to allow
driver specific implementations of manually setting the polarity.
Signed-off-by: David Thomson <[email protected]>
Reviewed-by: Florian Fainelli <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'drivers/net/phy/phy.c')
| -rw-r--r-- | drivers/net/phy/phy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index b2197b506acb..47693a9ebd3a 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c @@ -353,6 +353,8 @@ int phy_ethtool_sset(struct phy_device *phydev, struct ethtool_cmd *cmd) phydev->duplex = cmd->duplex; + phydev->mdix = cmd->eth_tp_mdix_ctrl; + /* Restart the PHY */ phy_start_aneg(phydev); |