linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] s390/lcs: add missing MODULE_DESCRIPTION() macro
@ 2024-06-25 16:35 Jeff Johnson
  2024-06-26 11:50 ` Alexandra Winter
  2024-06-27 21:50 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 5+ messages in thread
From: Jeff Johnson @ 2024-06-25 16:35 UTC (permalink / raw)
  To: Alexandra Winter, Thorsten Winkler, Heiko Carstens, Vasily Gorbik,
	Alexander Gordeev, Christian Borntraeger, Sven Schnelle
  Cc: linux-s390, netdev, linux-kernel, kernel-janitors, Jeff Johnson

With ARCH=s390, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/s390/net/lcs.o

Add the missing invocation of the MODULE_DESCRIPTION() macro.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
---
Changes in v2:
- Modified the description (both in the patch and in the file prolog) per
  feedback from Alexandra
- Link to v1: https://lore.kernel.org/r/20240615-md-s390-drivers-s390-net-v1-1-968cb735f70d@quicinc.com
---
 drivers/s390/net/lcs.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/s390/net/lcs.c b/drivers/s390/net/lcs.c
index 25d4e6376591..88db8378325a 100644
--- a/drivers/s390/net/lcs.c
+++ b/drivers/s390/net/lcs.c
@@ -1,6 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0+
 /*
- *  Linux for S/390 Lan Channel Station Network Driver
+ *  Linux for S/390 LAN channel station device driver
  *
  *  Copyright IBM Corp. 1999, 2009
  *  Author(s): Original Code written by
@@ -2380,5 +2380,6 @@ module_init(lcs_init_module);
 module_exit(lcs_cleanup_module);
 
 MODULE_AUTHOR("Frank Pavlic <fpavlic@de.ibm.com>");
+MODULE_DESCRIPTION("S/390 LAN channel station device driver");
 MODULE_LICENSE("GPL");
 

---
base-commit: 83a7eefedc9b56fe7bfeff13b6c7356688ffa670
change-id: 20240615-md-s390-drivers-s390-net-78a9068f1004


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

* Re: [PATCH v2] s390/lcs: add missing MODULE_DESCRIPTION() macro
  2024-06-25 16:35 [PATCH v2] s390/lcs: add missing MODULE_DESCRIPTION() macro Jeff Johnson
@ 2024-06-26 11:50 ` Alexandra Winter
  2024-06-27  9:02   ` Alexander Gordeev
  2024-06-27 21:50 ` patchwork-bot+netdevbpf
  1 sibling, 1 reply; 5+ messages in thread
From: Alexandra Winter @ 2024-06-26 11:50 UTC (permalink / raw)
  To: Jeff Johnson, Thorsten Winkler, Heiko Carstens, Vasily Gorbik,
	Alexander Gordeev, Christian Borntraeger, Sven Schnelle
  Cc: linux-s390, netdev, linux-kernel, kernel-janitors



On 25.06.24 18:35, Jeff Johnson wrote:
> With ARCH=s390, make allmodconfig && make W=1 C=1 reports:
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/s390/net/lcs.o
> 
> Add the missing invocation of the MODULE_DESCRIPTION() macro.
> 
> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
> ---
> Changes in v2:
> - Modified the description (both in the patch and in the file prolog) per
>   feedback from Alexandra
> - Link to v1: https://lore.kernel.org/r/20240615-md-s390-drivers-s390-net-v1-1-968cb735f70d@quicinc.com
> ---


Acked-by: Alexandra Winter <wintera@linux.ibm.com>

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

* Re: [PATCH v2] s390/lcs: add missing MODULE_DESCRIPTION() macro
  2024-06-26 11:50 ` Alexandra Winter
@ 2024-06-27  9:02   ` Alexander Gordeev
  2024-06-27  9:21     ` Alexandra Winter
  0 siblings, 1 reply; 5+ messages in thread
From: Alexander Gordeev @ 2024-06-27  9:02 UTC (permalink / raw)
  To: Alexandra Winter
  Cc: Jeff Johnson, Thorsten Winkler, Heiko Carstens, Vasily Gorbik,
	Christian Borntraeger, Sven Schnelle, linux-s390, netdev,
	linux-kernel, kernel-janitors

On Wed, Jun 26, 2024 at 01:50:21PM +0200, Alexandra Winter wrote:
> Acked-by: Alexandra Winter <wintera@linux.ibm.com>

Hi Alexandra,

I guess, this update go via s390 tree together with all other
MODULE_DESCRIPTION ones. It is up to you.

Thanks!

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

* Re: [PATCH v2] s390/lcs: add missing MODULE_DESCRIPTION() macro
  2024-06-27  9:02   ` Alexander Gordeev
@ 2024-06-27  9:21     ` Alexandra Winter
  0 siblings, 0 replies; 5+ messages in thread
From: Alexandra Winter @ 2024-06-27  9:21 UTC (permalink / raw)
  To: Alexander Gordeev
  Cc: Jeff Johnson, Thorsten Winkler, Heiko Carstens, Vasily Gorbik,
	Christian Borntraeger, Sven Schnelle, linux-s390, netdev,
	linux-kernel, kernel-janitors



On 27.06.24 11:02, Alexander Gordeev wrote:
> On Wed, Jun 26, 2024 at 01:50:21PM +0200, Alexandra Winter wrote:
>> Acked-by: Alexandra Winter <wintera@linux.ibm.com>
> 
> Hi Alexandra,
> 
> I guess, this update go via s390 tree together with all other
> MODULE_DESCRIPTION ones. It is up to you.
> 
> Thanks!
> 


Actually my assumption was that the netdev maintainers will take it via netdev.
There are no dependencies afaict.

But any way is fine with me.

@Dave, @Jakub, please speak up, if you want Alexander to take it.

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

* Re: [PATCH v2] s390/lcs: add missing MODULE_DESCRIPTION() macro
  2024-06-25 16:35 [PATCH v2] s390/lcs: add missing MODULE_DESCRIPTION() macro Jeff Johnson
  2024-06-26 11:50 ` Alexandra Winter
@ 2024-06-27 21:50 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 5+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-06-27 21:50 UTC (permalink / raw)
  To: Jeff Johnson
  Cc: wintera, twinkler, hca, gor, agordeev, borntraeger, svens,
	linux-s390, netdev, linux-kernel, kernel-janitors

Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Tue, 25 Jun 2024 09:35:41 -0700 you wrote:
> With ARCH=s390, make allmodconfig && make W=1 C=1 reports:
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/s390/net/lcs.o
> 
> Add the missing invocation of the MODULE_DESCRIPTION() macro.
> 
> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
> 
> [...]

Here is the summary with links:
  - [v2] s390/lcs: add missing MODULE_DESCRIPTION() macro
    https://git.kernel.org/netdev/net-next/c/346a03e5fbdb

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] 5+ messages in thread

end of thread, other threads:[~2024-06-27 21:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-25 16:35 [PATCH v2] s390/lcs: add missing MODULE_DESCRIPTION() macro Jeff Johnson
2024-06-26 11:50 ` Alexandra Winter
2024-06-27  9:02   ` Alexander Gordeev
2024-06-27  9:21     ` Alexandra Winter
2024-06-27 21:50 ` 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;
as well as URLs for NNTP newsgroup(s).