public inbox for netdev@vger.kernel.org 
 help / color / mirror / Atom feed
* [PATCH net-next] net: ocelot: update the MODULE_DESCRIPTION()
@ 2024-02-02 16:05 Breno Leitao
  2024-02-02 16:06 ` Vladimir Oltean
  2024-02-05 12:40 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Breno Leitao @ 2024-02-02 16:05 UTC (permalink / raw)
  To: davem, edumazet, kuba, pabeni, Vladimir Oltean, Claudiu Manoil,
	Alexandre Belloni, UNGLinuxDriver, Horatiu Vultur
  Cc: netdev, linux-kernel

commit 1c870c63d7d2 ("net: fill in MODULE_DESCRIPTION()s for ocelot")
got a suggestion from Vladimir Oltean after it had landed in net-next.

Rewrite the module description according to Vladimir's suggestion.

Fixes: 1c870c63d7d2 ("net: fill in MODULE_DESCRIPTION()s for ocelot")
Suggested-by: Vladimir Oltean <vladimir.oltean@nxp•com>
Signed-off-by: Breno Leitao <leitao@debian•org>
---
 drivers/net/ethernet/mscc/ocelot.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/mscc/ocelot.c b/drivers/net/ethernet/mscc/ocelot.c
index 2194f2a7ab27..ed2fb44500b0 100644
--- a/drivers/net/ethernet/mscc/ocelot.c
+++ b/drivers/net/ethernet/mscc/ocelot.c
@@ -3078,5 +3078,5 @@ void ocelot_deinit_port(struct ocelot *ocelot, int port)
 }
 EXPORT_SYMBOL(ocelot_deinit_port);
 
-MODULE_DESCRIPTION("Microsemi Ocelot (VSC7514) Switch driver");
+MODULE_DESCRIPTION("Microsemi Ocelot switch family library");
 MODULE_LICENSE("Dual MIT/GPL");
-- 
2.34.1


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

* Re: [PATCH net-next] net: ocelot: update the MODULE_DESCRIPTION()
  2024-02-02 16:05 [PATCH net-next] net: ocelot: update the MODULE_DESCRIPTION() Breno Leitao
@ 2024-02-02 16:06 ` Vladimir Oltean
  2024-02-05 12:40 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Vladimir Oltean @ 2024-02-02 16:06 UTC (permalink / raw)
  To: Breno Leitao
  Cc: davem, edumazet, kuba, pabeni, Claudiu Manoil, Alexandre Belloni,
	UNGLinuxDriver, Horatiu Vultur, netdev, linux-kernel

On Fri, Feb 02, 2024 at 08:05:37AM -0800, Breno Leitao wrote:
> commit 1c870c63d7d2 ("net: fill in MODULE_DESCRIPTION()s for ocelot")
> got a suggestion from Vladimir Oltean after it had landed in net-next.
> 
> Rewrite the module description according to Vladimir's suggestion.
> 
> Fixes: 1c870c63d7d2 ("net: fill in MODULE_DESCRIPTION()s for ocelot")
> Suggested-by: Vladimir Oltean <vladimir.oltean@nxp•com>
> Signed-off-by: Breno Leitao <leitao@debian•org>
> ---
>  drivers/net/ethernet/mscc/ocelot.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/mscc/ocelot.c b/drivers/net/ethernet/mscc/ocelot.c
> index 2194f2a7ab27..ed2fb44500b0 100644
> --- a/drivers/net/ethernet/mscc/ocelot.c
> +++ b/drivers/net/ethernet/mscc/ocelot.c
> @@ -3078,5 +3078,5 @@ void ocelot_deinit_port(struct ocelot *ocelot, int port)
>  }
>  EXPORT_SYMBOL(ocelot_deinit_port);
>  
> -MODULE_DESCRIPTION("Microsemi Ocelot (VSC7514) Switch driver");
> +MODULE_DESCRIPTION("Microsemi Ocelot switch family library");
>  MODULE_LICENSE("Dual MIT/GPL");
> -- 
> 2.34.1
>

Thanks!

Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp•com>

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

* Re: [PATCH net-next] net: ocelot: update the MODULE_DESCRIPTION()
  2024-02-02 16:05 [PATCH net-next] net: ocelot: update the MODULE_DESCRIPTION() Breno Leitao
  2024-02-02 16:06 ` Vladimir Oltean
@ 2024-02-05 12:40 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-02-05 12:40 UTC (permalink / raw)
  To: Breno Leitao
  Cc: davem, edumazet, kuba, pabeni, vladimir.oltean, claudiu.manoil,
	alexandre.belloni, UNGLinuxDriver, horatiu.vultur, netdev,
	linux-kernel

Hello:

This patch was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft•net>:

On Fri,  2 Feb 2024 08:05:37 -0800 you wrote:
> commit 1c870c63d7d2 ("net: fill in MODULE_DESCRIPTION()s for ocelot")
> got a suggestion from Vladimir Oltean after it had landed in net-next.
> 
> Rewrite the module description according to Vladimir's suggestion.
> 
> Fixes: 1c870c63d7d2 ("net: fill in MODULE_DESCRIPTION()s for ocelot")
> Suggested-by: Vladimir Oltean <vladimir.oltean@nxp•com>
> Signed-off-by: Breno Leitao <leitao@debian•org>
> 
> [...]

Here is the summary with links:
  - [net-next] net: ocelot: update the MODULE_DESCRIPTION()
    https://git.kernel.org/netdev/net-next/c/1c7bbea992c8

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2024-02-05 12:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-02 16:05 [PATCH net-next] net: ocelot: update the MODULE_DESCRIPTION() Breno Leitao
2024-02-02 16:06 ` Vladimir Oltean
2024-02-05 12:40 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox