diff options
author | Heiner Kallweit <hkallweit1@gmail.com> | 2020-04-23 21:35:36 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-04-24 16:47:51 -0700 |
commit | 3194915486b2bc3f77745774f1731b78f32ff688 (patch) | |
tree | c4f723fc41340fe0dfc1112b20d544745963cb29 /include/linux | |
parent | d70c47c8dc6902db19555b7ff7e6eeb264d4ac06 (diff) |
net: phy: remove genphy_no_soft_reset
Since 6e2d85ec0559 ("net: phy: Stop with excessive soft reset")
we don't need genphy_no_soft_reset() any longer. Not setting
callback soft_reset results in a no-op now.
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/phy.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/phy.h b/include/linux/phy.h index 3941a6bcba10..e2bfb9240587 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -1251,10 +1251,6 @@ static inline int genphy_config_aneg(struct phy_device *phydev) return __genphy_config_aneg(phydev, false); } -static inline int genphy_no_soft_reset(struct phy_device *phydev) -{ - return 0; -} static inline int genphy_no_ack_interrupt(struct phy_device *phydev) { return 0; |