summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2015-10-01 00:34:08 +0100
committerRussell King <rmk+kernel@armlinux.org.uk>2017-02-20 10:47:20 +0000
commit506fbfada6e0ee849633d4fc2560c469804355f0 (patch)
tree9d56ded1ae7f1d5cc509a9fea1693d59c78a91ea
parentd10d2e6b12c09ee36a5fc53e397dda5e4c10c57e (diff)
net: mvneta: enable flow control for PHY connections
Enable flow control support for PHY connections by indicating our support via the ethtool capabilities. phylink takes care of the appropriate handling. Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r--drivers/net/ethernet/marvell/mvneta.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/ethernet/marvell/mvneta.c b/drivers/net/ethernet/marvell/mvneta.c
index 1c7a5ea1fbff..a35e42b6239d 100644
--- a/drivers/net/ethernet/marvell/mvneta.c
+++ b/drivers/net/ethernet/marvell/mvneta.c
@@ -3197,10 +3197,11 @@ static void mvneta_validate_support(struct net_device *ndev, unsigned int mode,
phylink_set(mask, 10baseT_Full);
phylink_set(mask, 100baseT_Half);
phylink_set(mask, 100baseT_Full);
- } else {
- phylink_set(mask, Pause);
}
+ if (mode != MLO_AN_FIXED)
+ phylink_set(mask, Pause);
+
bitmap_and(support, support, mask, __ETHTOOL_LINK_MODE_MASK_NBITS);
}