diff options
author | Vladimir Oltean <olteanv@gmail.com> | 2020-01-04 02:37:11 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-01-05 15:13:13 -0800 |
commit | 2821d50fc0c45e45bc10781d4dd332e21e7fb980 (patch) | |
tree | 89253f8b67c741762faa569fcc6b02e9040f5e7f /net/dsa | |
parent | a68578c20a9667463ee3000402b21644ea62d753 (diff) | |
download | lwn-2821d50fc0c45e45bc10781d4dd332e21e7fb980.tar.gz lwn-2821d50fc0c45e45bc10781d4dd332e21e7fb980.zip |
net: dsa: tag_sja1105: Slightly improve the Xmas tree in sja1105_xmit
This is a cosmetic patch that makes the dp, tx_vid, queue_mapping and
pcp local variable definitions a bit closer in length, so they don't
look like an eyesore as much.
The 'ds' variable is not used otherwise, except for ds->dp.
Signed-off-by: Vladimir Oltean <olteanv@gmail.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa')
-rw-r--r-- | net/dsa/tag_sja1105.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/dsa/tag_sja1105.c b/net/dsa/tag_sja1105.c index 7c2b84393cc6..5366ea430349 100644 --- a/net/dsa/tag_sja1105.c +++ b/net/dsa/tag_sja1105.c @@ -100,8 +100,7 @@ static struct sk_buff *sja1105_xmit(struct sk_buff *skb, struct net_device *netdev) { struct dsa_port *dp = dsa_slave_to_port(netdev); - struct dsa_switch *ds = dp->ds; - u16 tx_vid = dsa_8021q_tx_vid(ds, dp->index); + u16 tx_vid = dsa_8021q_tx_vid(dp->ds, dp->index); u16 queue_mapping = skb_get_queue_mapping(skb); u8 pcp = netdev_txq_to_tc(netdev, queue_mapping); |