net: phy: Add helper for advertise to lcl value
Add a helper to convert the local advertising to an LCL capabilities, which is then used to resolve pause flow control settings. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Reviewed-by: Maxime Chevallier <maxime.chevallier@bootlin.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
edc7ccbbcf
commit
5f991f7bdd
@@ -393,11 +393,7 @@ void fman_get_pause_cfg(struct mac_device *mac_dev, bool *rx_pause,
|
||||
*/
|
||||
|
||||
/* get local capabilities */
|
||||
lcl_adv = 0;
|
||||
if (phy_dev->advertising & ADVERTISED_Pause)
|
||||
lcl_adv |= ADVERTISE_PAUSE_CAP;
|
||||
if (phy_dev->advertising & ADVERTISED_Asym_Pause)
|
||||
lcl_adv |= ADVERTISE_PAUSE_ASYM;
|
||||
lcl_adv = ethtool_adv_to_lcl_adv_t(phy_dev->advertising);
|
||||
|
||||
/* get link partner capabilities */
|
||||
rmt_adv = 0;
|
||||
|
Reference in New Issue
Block a user