diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2014-02-13 16:08:43 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-02-14 00:27:57 -0500 |
commit | c88838ce89515331ac835a470dc51ddf574770b1 (patch) | |
tree | ce2929ae61dc3c875179658796371a3db72a71a4 /drivers/net/phy/phy.c | |
parent | fd70f72c66eeada848abaed9eb6bbdbaf57764e9 (diff) |
net: phy: update port type for MoCA PHYs
MoCA PHYs are using coaxial (BNC-like) connectors, update the
transceiver port type when replying to ethtool.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/phy.c')
-rw-r--r-- | drivers/net/phy/phy.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index fc918b63dc65..643b5d665f41 100644 --- a/drivers/net/phy/phy.c +++ b/drivers/net/phy/phy.c @@ -305,7 +305,10 @@ int phy_ethtool_gset(struct phy_device *phydev, struct ethtool_cmd *cmd) ethtool_cmd_speed_set(cmd, phydev->speed); cmd->duplex = phydev->duplex; - cmd->port = PORT_MII; + if (phydev->interface == PHY_INTERFACE_MODE_MOCA) + cmd->port = PORT_BNC; + else + cmd->port = PORT_MII; cmd->phy_address = phydev->addr; cmd->transceiver = phy_is_internal(phydev) ? XCVR_INTERNAL : XCVR_EXTERNAL; |