From 71eff06a95acc75a1b0eca1ee6bb40978f3cdbe0 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 06c6955382b6..8f4fd355e547 100644 --- a/drivers/net/ethernet/marvell/mvneta.c +++ b/drivers/net/ethernet/marvell/mvneta.c @@ -3138,10 +3138,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