diff options
author | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2024-11-23 20:42:06 +0000 |
---|---|---|
committer | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2025-04-04 14:40:34 +0100 |
commit | d4216efd2371efb46dd386b34236bf61e046b3bf (patch) | |
tree | bf3f60c8ba1369a3028e2f42159f5bc4a910e412 /drivers/net | |
parent | 16384c6ffdcbb93d5b254c513b1e5891e38fb7b7 (diff) |
net: dsa: mt753x: add phy_interface_t to LPI methodsnet-queue
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/dsa/mt7530.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c index 840bcc3500b5..296645e50768 100644 --- a/drivers/net/dsa/mt7530.c +++ b/drivers/net/dsa/mt7530.c @@ -2956,7 +2956,8 @@ static void mt753x_phylink_mac_link_up(struct phylink_config *config, mt7530_set(priv, MT753X_PMCR_P(dp->index), mcr); } -static void mt753x_phylink_mac_disable_tx_lpi(struct phylink_config *config) +static void mt753x_phylink_mac_disable_tx_lpi(struct phylink_config *config, + phy_interface_t interface) { struct dsa_port *dp = dsa_phylink_to_port(config); struct mt7530_priv *priv = dp->ds->priv; @@ -2966,6 +2967,7 @@ static void mt753x_phylink_mac_disable_tx_lpi(struct phylink_config *config) } static int mt753x_phylink_mac_enable_tx_lpi(struct phylink_config *config, + phy_interface_t interface, u32 timer, bool tx_clock_stop) { struct dsa_port *dp = dsa_phylink_to_port(config); |