diff options
author | Alexander Lobakin <[email protected]> | 2020-01-15 11:54:38 +0300 |
---|---|---|
committer | David S. Miller <[email protected]> | 2020-01-16 13:58:26 +0100 |
commit | ad32205470919c8e04cdd33e0613bdba50c2376d (patch) | |
tree | 7ade5044a766264e63a00dfe5def27ed14aa82d3 | |
parent | 82d5d6a638cbd12b7dfe8acafd9efd87a656cc06 (diff) |
net: dsa: tag_gswip: fix typo in tagger name
The correct name is GSWIP (Gigabit Switch IP). Typo was introduced in
875138f81d71a ("dsa: Move tagger name into its ops structure") while
moving tagger names to their structures.
Fixes: 875138f81d71a ("dsa: Move tagger name into its ops structure")
Reviewed-by: Andrew Lunn <[email protected]>
Signed-off-by: Alexander Lobakin <[email protected]>
Reviewed-by: Florian Fainelli <[email protected]>
Acked-by: Hauke Mehrtens <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | net/dsa/tag_gswip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dsa/tag_gswip.c b/net/dsa/tag_gswip.c index b678160bbd66..408d4af390a0 100644 --- a/net/dsa/tag_gswip.c +++ b/net/dsa/tag_gswip.c @@ -104,7 +104,7 @@ static struct sk_buff *gswip_tag_rcv(struct sk_buff *skb, } static const struct dsa_device_ops gswip_netdev_ops = { - .name = "gwsip", + .name = "gswip", .proto = DSA_TAG_PROTO_GSWIP, .xmit = gswip_tag_xmit, .rcv = gswip_tag_rcv, |