summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@armlinux.org.uk>2020-02-11 23:21:16 +0000
committerRussell King <rmk+kernel@armlinux.org.uk>2020-06-28 13:52:11 +0100
commit67b0bf3781cc3df3b710b91c7368a625695c932e (patch)
tree7759db6f659a074f2e0329afa4494d4854972455
parent057c44241e20445796cd3bcb03c55d0aa638cb8e (diff)
net: phylink: avoid mac_config calls
Avoid calling mac_config() when using split PCS, and the interface remains the same. Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
-rw-r--r--drivers/net/phy/phylink.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/phy/phylink.c b/drivers/net/phy/phylink.c
index 47323d13bb1f..fc0fa1e09551 100644
--- a/drivers/net/phy/phylink.c
+++ b/drivers/net/phy/phylink.c
@@ -631,10 +631,12 @@ static void phylink_resolve(struct work_struct *w)
}
phylink_pcs_config(pl, false, &link_state);
pl->link_config.interface = link_state.interface;
- } else {
+ } else if (!pl->pcs_ops) {
/* The interface remains unchanged, only the speed,
* duplex or pause settings have changed. Call the
- * old mac_config() method to configure the MAC/PCS.
+ * old mac_config() method to configure the MAC/PCS
+ * only if we do not have a PCS installed (an
+ * unconverted user.)
*/
phylink_mac_config(pl, &link_state);
}