linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dmaengine: qcom: add missing MODULE_DESCRIPTION() macros
@ 2024-06-03 17:06 Jeff Johnson
  2024-06-03 17:13 ` Jeffrey Hugo
  2024-06-07 17:47 ` Vinod Koul
  0 siblings, 2 replies; 5+ messages in thread
From: Jeff Johnson @ 2024-06-03 17:06 UTC (permalink / raw)
  To: Sinan Kaya, Vinod Koul, kernel
  Cc: linux-arm-kernel, linux-arm-msm, dmaengine, linux-kernel,
	kernel-janitors, Jeff Johnson

make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/qcom/hdma_mgmt.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/qcom/hdma.o

Add the missing invocations of the MODULE_DESCRIPTION() macro, using
the descriptions from the associated Kconfig items.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
---
 drivers/dma/qcom/hidma.c      | 1 +
 drivers/dma/qcom/hidma_mgmt.c | 1 +
 2 files changed, 2 insertions(+)

diff --git a/drivers/dma/qcom/hidma.c b/drivers/dma/qcom/hidma.c
index 721b4ac0857a..4d2cd8d9ec74 100644
--- a/drivers/dma/qcom/hidma.c
+++ b/drivers/dma/qcom/hidma.c
@@ -957,4 +957,5 @@ static struct platform_driver hidma_driver = {
 };
 
 module_platform_driver(hidma_driver);
+MODULE_DESCRIPTION("Qualcomm Technologies HIDMA Channel support");
 MODULE_LICENSE("GPL v2");
diff --git a/drivers/dma/qcom/hidma_mgmt.c b/drivers/dma/qcom/hidma_mgmt.c
index bb883e138ebf..4805ce390ffa 100644
--- a/drivers/dma/qcom/hidma_mgmt.c
+++ b/drivers/dma/qcom/hidma_mgmt.c
@@ -331,4 +331,5 @@ static struct platform_driver hidma_mgmt_driver = {
 };
 
 module_platform_driver(hidma_mgmt_driver);
+MODULE_DESCRIPTION("Qualcomm Technologies HIDMA DMA engine interface");
 MODULE_LICENSE("GPL v2");

---
base-commit: 83814698cf48ce3aadc5d88a3f577f04482ff92a
change-id: 20240601-md-drivers-dma-qcom-c901844d7003


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] dmaengine: qcom: add missing MODULE_DESCRIPTION() macros
  2024-06-03 17:06 [PATCH] dmaengine: qcom: add missing MODULE_DESCRIPTION() macros Jeff Johnson
@ 2024-06-03 17:13 ` Jeffrey Hugo
  2024-06-07 17:47 ` Vinod Koul
  1 sibling, 0 replies; 5+ messages in thread
From: Jeffrey Hugo @ 2024-06-03 17:13 UTC (permalink / raw)
  To: Jeff Johnson, Sinan Kaya, Vinod Koul, kernel
  Cc: linux-arm-kernel, linux-arm-msm, dmaengine, linux-kernel,
	kernel-janitors

On 6/3/2024 11:06 AM, Jeff Johnson wrote:
> make allmodconfig && make W=1 C=1 reports:
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/qcom/hdma_mgmt.o
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/qcom/hdma.o
> 
> Add the missing invocations of the MODULE_DESCRIPTION() macro, using
> the descriptions from the associated Kconfig items.
> 
> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>

Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] dmaengine: qcom: add missing MODULE_DESCRIPTION() macros
  2024-06-03 17:06 [PATCH] dmaengine: qcom: add missing MODULE_DESCRIPTION() macros Jeff Johnson
  2024-06-03 17:13 ` Jeffrey Hugo
@ 2024-06-07 17:47 ` Vinod Koul
  2024-07-23 18:36   ` Jeff Johnson
  1 sibling, 1 reply; 5+ messages in thread
From: Vinod Koul @ 2024-06-07 17:47 UTC (permalink / raw)
  To: Sinan Kaya, kernel, Jeff Johnson
  Cc: linux-arm-kernel, linux-arm-msm, dmaengine, linux-kernel,
	kernel-janitors


On Mon, 03 Jun 2024 10:06:42 -0700, Jeff Johnson wrote:
> make allmodconfig && make W=1 C=1 reports:
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/qcom/hdma_mgmt.o
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/qcom/hdma.o
> 
> Add the missing invocations of the MODULE_DESCRIPTION() macro, using
> the descriptions from the associated Kconfig items.
> 
> [...]

Applied, thanks!

[1/1] dmaengine: qcom: add missing MODULE_DESCRIPTION() macros
      commit: 8e9d83d7228f663ef340ebb339eaffc677277bd4

Best regards,
-- 
Vinod Koul <vkoul@kernel.org>


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] dmaengine: qcom: add missing MODULE_DESCRIPTION() macros
  2024-06-07 17:47 ` Vinod Koul
@ 2024-07-23 18:36   ` Jeff Johnson
  2024-07-25  5:51     ` Vinod Koul
  0 siblings, 1 reply; 5+ messages in thread
From: Jeff Johnson @ 2024-07-23 18:36 UTC (permalink / raw)
  To: Vinod Koul, Sinan Kaya, kernel
  Cc: linux-arm-kernel, linux-arm-msm, dmaengine, linux-kernel,
	kernel-janitors, Greg KH

On 6/7/2024 10:47 AM, Vinod Koul wrote:
> 
> On Mon, 03 Jun 2024 10:06:42 -0700, Jeff Johnson wrote:
>> make allmodconfig && make W=1 C=1 reports:
>> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/qcom/hdma_mgmt.o
>> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/qcom/hdma.o
>>
>> Add the missing invocations of the MODULE_DESCRIPTION() macro, using
>> the descriptions from the associated Kconfig items.
>>
>> [...]
> 
> Applied, thanks!
> 
> [1/1] dmaengine: qcom: add missing MODULE_DESCRIPTION() macros
>       commit: 8e9d83d7228f663ef340ebb339eaffc677277bd4
> 

Hi Vinod,
I see this landed in linux-next, but is not currently in Linus' tree for 6.11.
Will you be able to have this pulled during the merge window?
I'm trying to eradicate all of these warnings before 6.11 rc-final.

Thanks!
/jeff



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

* Re: [PATCH] dmaengine: qcom: add missing MODULE_DESCRIPTION() macros
  2024-07-23 18:36   ` Jeff Johnson
@ 2024-07-25  5:51     ` Vinod Koul
  0 siblings, 0 replies; 5+ messages in thread
From: Vinod Koul @ 2024-07-25  5:51 UTC (permalink / raw)
  To: Jeff Johnson
  Cc: Sinan Kaya, kernel, linux-arm-kernel, linux-arm-msm, dmaengine,
	linux-kernel, kernel-janitors, Greg KH

On 23-07-24, 11:36, Jeff Johnson wrote:
> On 6/7/2024 10:47 AM, Vinod Koul wrote:
> > 
> > On Mon, 03 Jun 2024 10:06:42 -0700, Jeff Johnson wrote:
> >> make allmodconfig && make W=1 C=1 reports:
> >> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/qcom/hdma_mgmt.o
> >> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/dma/qcom/hdma.o
> >>
> >> Add the missing invocations of the MODULE_DESCRIPTION() macro, using
> >> the descriptions from the associated Kconfig items.
> >>
> >> [...]
> > 
> > Applied, thanks!
> > 
> > [1/1] dmaengine: qcom: add missing MODULE_DESCRIPTION() macros
> >       commit: 8e9d83d7228f663ef340ebb339eaffc677277bd4
> > 
> 
> Hi Vinod,
> I see this landed in linux-next, but is not currently in Linus' tree for 6.11.
> Will you be able to have this pulled during the merge window?
> I'm trying to eradicate all of these warnings before 6.11 rc-final.

We are still in merge window!
FWIW, this is in linus's tree now

-- 
~Vinod


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

end of thread, other threads:[~2024-07-25  5:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-03 17:06 [PATCH] dmaengine: qcom: add missing MODULE_DESCRIPTION() macros Jeff Johnson
2024-06-03 17:13 ` Jeffrey Hugo
2024-06-07 17:47 ` Vinod Koul
2024-07-23 18:36   ` Jeff Johnson
2024-07-25  5:51     ` Vinod Koul

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).