diff options
| author | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2024-06-13 11:36:27 +0100 |
|---|---|---|
| committer | Jakub Kicinski <kuba@kernel.org> | 2024-06-14 19:06:41 -0700 |
| commit | 93f84152e4aed84a246767f13da06f4a907328ef (patch) | |
| tree | 451d922af1e053258f6548d209338af19ed4f682 | |
| parent | net: stmmac: dwmac-socfpga: provide select_pcs() implementation (diff) | |
| download | linux-93f84152e4aed84a246767f13da06f4a907328ef.tar.gz linux-93f84152e4aed84a246767f13da06f4a907328ef.zip | |
net: stmmac: clean up stmmac_mac_select_pcs()
Since all platform providers of PCS now populate the select_pcs()
method, there is no need for the common code to look at
priv->hw->phylink_pcs, so remove it.
Reviewed-by: Romain Gantois <romain.gantois@bootlin.com>
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Link: https://lore.kernel.org/r/E1sHhoh-00FetT-3S@rmk-PC.armlinux.org.uk
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
| -rw-r--r-- | drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c index e9e2a95c91a3..5ddbb0d44373 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -957,7 +957,7 @@ static struct phylink_pcs *stmmac_mac_select_pcs(struct phylink_config *config, return pcs; } - return priv->hw->phylink_pcs; + return NULL; } static void stmmac_mac_config(struct phylink_config *config, unsigned int mode, |
