diff options
author | Heiner Kallweit <hkallweit1@gmail.com> | 2019-03-27 23:58:44 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-04-02 23:09:55 +0300 |
commit | 045925e3fe5b98e402337a176d154252c56cef2e (patch) | |
tree | 6597b18b92201126a5795cba6b372a320d6c5d2e /include/linux/phy.h | |
parent | 6d670497e01803b486aa72cc1a718401ab986896 (diff) | |
download | linux-045925e3fe5b98e402337a176d154252c56cef2e.tar.xz |
net: phy: add genphy_read_abilities
Similar to genphy_c45_pma_read_abilities() add a function to dynamically
detect the abilities of a Clause 22 PHY. This is mainly copied from
genphy_config_init().
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/phy.h')
-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 34084892a466..ad88f063e50f 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -1075,6 +1075,7 @@ void phy_attached_info(struct phy_device *phydev); /* Clause 22 PHY */ int genphy_config_init(struct phy_device *phydev); +int genphy_read_abilities(struct phy_device *phydev); int genphy_setup_forced(struct phy_device *phydev); int genphy_restart_aneg(struct phy_device *phydev); int genphy_config_eee_advert(struct phy_device *phydev); |