net: dsa: qca: remove qca8k_get_mac_eee()

qca8k_get_mac_eee() is no longer called by the core DSA code. Remove it.

Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Link: https://patch.msgid.link/E1tUllP-007UzF-Gk@rmk-PC.armlinux.org.uk
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
Russell King (Oracle) 2025-01-06 11:59:19 +00:00 committed by Jakub Kicinski
parent d3889a3d13
commit d19be79a67
3 changed files with 0 additions and 9 deletions

View File

@ -2017,7 +2017,6 @@ static const struct dsa_switch_ops qca8k_switch_ops = {
.get_sset_count = qca8k_get_sset_count, .get_sset_count = qca8k_get_sset_count,
.set_ageing_time = qca8k_set_ageing_time, .set_ageing_time = qca8k_set_ageing_time,
.support_eee = dsa_supports_eee, .support_eee = dsa_supports_eee,
.get_mac_eee = qca8k_get_mac_eee,
.set_mac_eee = qca8k_set_mac_eee, .set_mac_eee = qca8k_set_mac_eee,
.port_enable = qca8k_port_enable, .port_enable = qca8k_port_enable,
.port_disable = qca8k_port_disable, .port_disable = qca8k_port_disable,

View File

@ -557,13 +557,6 @@ int qca8k_set_mac_eee(struct dsa_switch *ds, int port,
return ret; return ret;
} }
int qca8k_get_mac_eee(struct dsa_switch *ds, int port,
struct ethtool_keee *e)
{
/* Nothing to do on the port's MAC */
return 0;
}
static int qca8k_port_configure_learning(struct dsa_switch *ds, int port, static int qca8k_port_configure_learning(struct dsa_switch *ds, int port,
bool learning) bool learning)
{ {

View File

@ -520,7 +520,6 @@ int qca8k_get_sset_count(struct dsa_switch *ds, int port, int sset);
/* Common eee function */ /* Common eee function */
int qca8k_set_mac_eee(struct dsa_switch *ds, int port, struct ethtool_keee *eee); int qca8k_set_mac_eee(struct dsa_switch *ds, int port, struct ethtool_keee *eee);
int qca8k_get_mac_eee(struct dsa_switch *ds, int port, struct ethtool_keee *e);
/* Common bridge function */ /* Common bridge function */
void qca8k_port_stp_state_set(struct dsa_switch *ds, int port, u8 state); void qca8k_port_stp_state_set(struct dsa_switch *ds, int port, u8 state);