diff options
author | Michael Walle <michael@walle.cc> | 2021-02-09 02:00:18 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-02-09 20:10:25 +0100 |
commit | f15008fbaa33bd2701ab173958c28feee4c65ca8 (patch) | |
tree | 055808f2c1c6b868af72c688d91dc36f8c65c9d8 /drivers/net/phy/marvell.c | |
parent | Merge branch 'route-offload-failure' (diff) | |
download | linux-f15008fbaa33bd2701ab173958c28feee4c65ca8.tar.xz linux-f15008fbaa33bd2701ab173958c28feee4c65ca8.zip |
net: phy: drop explicit genphy_read_status() op
genphy_read_status() is already the default for the .read_status() op.
Drop the unnecessary references.
Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/marvell.c')
-rw-r--r-- | drivers/net/phy/marvell.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index 620052c023a5..b523aa37ebf0 100644 --- a/drivers/net/phy/marvell.c +++ b/drivers/net/phy/marvell.c @@ -2852,7 +2852,6 @@ static struct phy_driver marvell_drivers[] = { .probe = marvell_probe, .config_init = m88e1145_config_init, .config_aneg = m88e1101_config_aneg, - .read_status = genphy_read_status, .config_intr = marvell_config_intr, .handle_interrupt = marvell_handle_interrupt, .resume = genphy_resume, |