diff options
author | Vladimir Oltean <vladimir.oltean@nxp.com> | 2021-09-22 16:57:03 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-09-23 12:34:14 +0100 |
commit | 68a81bb2eebdeaabb04ae04c4d89c3bb5bec3b32 (patch) | |
tree | f8159e8ae27a487fdddd7b4e0b059d8d1c2c233f | |
parent | 428168f9951710854d8d1abf6ca03a8bdab0ccc5 (diff) |
net: dsa: sja1105: remove sp->dp
It looks like this field was never used since its introduction in commit
227d07a07ef1 ("net: dsa: sja1105: Add support for traffic through
standalone ports") remove it.
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/dsa/sja1105/sja1105_main.c | 1 | ||||
-rw-r--r-- | include/linux/dsa/sja1105.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/dsa/sja1105/sja1105_main.c b/drivers/net/dsa/sja1105/sja1105_main.c index 2f8cc6686c38..7ce69dc07800 100644 --- a/drivers/net/dsa/sja1105/sja1105_main.c +++ b/drivers/net/dsa/sja1105/sja1105_main.c @@ -2965,7 +2965,6 @@ static int sja1105_setup_ports(struct sja1105_private *priv) continue; dp->priv = sp; - sp->dp = dp; sp->data = tagger_data; slave = dp->slave; kthread_init_work(&sp->xmit_work, sja1105_port_deferred_xmit); diff --git a/include/linux/dsa/sja1105.h b/include/linux/dsa/sja1105.h index 171106202fe5..71b69ec52108 100644 --- a/include/linux/dsa/sja1105.h +++ b/include/linux/dsa/sja1105.h @@ -65,7 +65,6 @@ struct sja1105_port { struct kthread_work xmit_work; struct sk_buff_head xmit_queue; struct sja1105_tagger_data *data; - struct dsa_port *dp; bool hwts_tx_en; }; |