From 506fbfada6e0ee849633d4fc2560c469804355f0 Mon Sep 17 00:00:00 2001 From: Russell King Date: Thu, 1 Oct 2015 00:34:08 +0100 Subject: 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 Signed-off-by: Russell King --- drivers/net/ethernet/marvell/mvneta.c | 5 +++-- 1 file 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); } -- cgit