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-01-05 22:38:21 +0000
commit71eff06a95acc75a1b0eca1ee6bb40978f3cdbe0 (patch)
treef8c284bc08ded371ead0d05193868841f3450a85
parent1f707084559fcfd51ef5a57a935453d49a548fde (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 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);
}