diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2019-10-04 18:06:04 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-10-05 03:11:08 +0200 |
commit | 8d3dc3ac9dd6801c732a72ca6979698c38451b4f (patch) | |
tree | 13f2d435ce56bc6f162fe2bc8edf3b8f6ec16adb /include | |
parent | net: phy: fix write to mii-ctrl1000 register (diff) | |
download | linux-8d3dc3ac9dd6801c732a72ca6979698c38451b4f.tar.xz linux-8d3dc3ac9dd6801c732a72ca6979698c38451b4f.zip |
net: phy: extract link partner advertisement reading
Move reading the link partner advertisement out of genphy_read_status()
into its own separate function. This will allow re-use of this code by
PHY drivers that are able to read the resolved status from the PHY.
Tested-by: tinywrkb <tinywrkb@gmail.com>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/phy.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/phy.h b/include/linux/phy.h index a7ecbe0e55aa..7abee820d05c 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -1076,6 +1076,7 @@ int genphy_config_eee_advert(struct phy_device *phydev); int __genphy_config_aneg(struct phy_device *phydev, bool changed); int genphy_aneg_done(struct phy_device *phydev); int genphy_update_link(struct phy_device *phydev); +int genphy_read_lpa(struct phy_device *phydev); int genphy_read_status(struct phy_device *phydev); int genphy_suspend(struct phy_device *phydev); int genphy_resume(struct phy_device *phydev); |