All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net] net: dsa: tag_gswip: fix typo in tagger name
@ 2020-01-15  8:54 Alexander Lobakin
  2020-01-15 17:21 ` Florian Fainelli
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Alexander Lobakin @ 2020-01-15  8:54 UTC (permalink / raw)
  To: David S. Miller
  Cc: Hauke Mehrtens, Andrew Lunn, Vivien Didelot, Florian Fainelli,
	netdev, linux-kernel, Alexander Lobakin

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 <andrew@lunn.ch>
Signed-off-by: Alexander Lobakin <alobakin@dlink.ru>
---
 net/dsa/tag_gswip.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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,
-- 
2.25.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH net] net: dsa: tag_gswip: fix typo in tagger name
  2020-01-15  8:54 [PATCH net] net: dsa: tag_gswip: fix typo in tagger name Alexander Lobakin
@ 2020-01-15 17:21 ` Florian Fainelli
  2020-01-15 18:36 ` Hauke Mehrtens
  2020-01-16 12:59 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2020-01-15 17:21 UTC (permalink / raw)
  To: Alexander Lobakin, David S. Miller
  Cc: Hauke Mehrtens, Andrew Lunn, Vivien Didelot, netdev, linux-kernel

On 1/15/20 12:54 AM, Alexander Lobakin wrote:
> 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 <andrew@lunn.ch>
> Signed-off-by: Alexander Lobakin <alobakin@dlink.ru>

Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
-- 
Florian

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net] net: dsa: tag_gswip: fix typo in tagger name
  2020-01-15  8:54 [PATCH net] net: dsa: tag_gswip: fix typo in tagger name Alexander Lobakin
  2020-01-15 17:21 ` Florian Fainelli
@ 2020-01-15 18:36 ` Hauke Mehrtens
  2020-01-16 12:59 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Hauke Mehrtens @ 2020-01-15 18:36 UTC (permalink / raw)
  To: Alexander Lobakin, David S. Miller
  Cc: Andrew Lunn, Vivien Didelot, Florian Fainelli, netdev, linux-kernel

On 1/15/20 9:54 AM, Alexander Lobakin wrote:
> 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 <andrew@lunn.ch>
> Signed-off-by: Alexander Lobakin <alobakin@dlink.ru>

Acked-by: Hauke Mehrtens <hauke@hauke-m.de>

> ---
>  net/dsa/tag_gswip.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> 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,
> 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH net] net: dsa: tag_gswip: fix typo in tagger name
  2020-01-15  8:54 [PATCH net] net: dsa: tag_gswip: fix typo in tagger name Alexander Lobakin
  2020-01-15 17:21 ` Florian Fainelli
  2020-01-15 18:36 ` Hauke Mehrtens
@ 2020-01-16 12:59 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2020-01-16 12:59 UTC (permalink / raw)
  To: alobakin; +Cc: hauke, andrew, vivien.didelot, f.fainelli, netdev, linux-kernel

From: Alexander Lobakin <alobakin@dlink.ru>
Date: Wed, 15 Jan 2020 11:54:38 +0300

> 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 <andrew@lunn.ch>
> Signed-off-by: Alexander Lobakin <alobakin@dlink.ru>

Applied and queued up for -stable, thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-01-16 12:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-15  8:54 [PATCH net] net: dsa: tag_gswip: fix typo in tagger name Alexander Lobakin
2020-01-15 17:21 ` Florian Fainelli
2020-01-15 18:36 ` Hauke Mehrtens
2020-01-16 12:59 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.