diff options
author | Heiner Kallweit <hkallweit1@gmail.com> | 2020-04-23 21:35:36 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-04-25 01:47:51 +0200 |
commit | 3194915486b2bc3f77745774f1731b78f32ff688 (patch) | |
tree | c4f723fc41340fe0dfc1112b20d544745963cb29 /drivers/net/phy/phy-c45.c | |
parent | net: phy: make phy_suspend a no-op if PHY is suspended already (diff) | |
download | linux-3194915486b2bc3f77745774f1731b78f32ff688.tar.xz linux-3194915486b2bc3f77745774f1731b78f32ff688.zip |
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 'drivers/net/phy/phy-c45.c')
-rw-r--r-- | drivers/net/phy/phy-c45.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/phy/phy-c45.c b/drivers/net/phy/phy-c45.c index 67ba47ae5284..defe09d94422 100644 --- a/drivers/net/phy/phy-c45.c +++ b/drivers/net/phy/phy-c45.c @@ -564,6 +564,5 @@ struct phy_driver genphy_c45_driver = { .phy_id = 0xffffffff, .phy_id_mask = 0xffffffff, .name = "Generic Clause 45 PHY", - .soft_reset = genphy_no_soft_reset, .read_status = genphy_c45_read_status, }; |