summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorRussell King (Oracle) <rmk+kernel@armlinux.org.uk>2021-11-21 13:02:03 +0000
committerRussell King (Oracle) <rmk+kernel@armlinux.org.uk>2022-01-18 10:17:07 +0000
commit9125aca9991a6e0ebe4585bb1f22815b3f00a390 (patch)
treedd791e2e7a870813a5c612f768adf6465df5393c /drivers
parent804f0d381ce1096fa648821a15a5a0e2e43fc29b (diff)
net: phylink: add phylink_pcs_inband()
Add phylink_pcs_inband() to indicate whether the PCS should be using inband signalling. Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/phy/phylink.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/phy/phylink.c b/drivers/net/phy/phylink.c
index 5eda247c8303..380a00bfadb3 100644
--- a/drivers/net/phy/phylink.c
+++ b/drivers/net/phy/phylink.c
@@ -3124,8 +3124,7 @@ int phylink_mii_c22_pcs_config(struct mdio_device *pcs, unsigned int mode,
}
/* Ensure ISOLATE bit is disabled */
- if (mode == MLO_AN_INBAND &&
- linkmode_test_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, advertising))
+ if (phylink_pcs_inband(mode, interface, advertising))
bmcr = BMCR_ANENABLE;
else
bmcr = 0;