mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] iommu/arm-smmu-v3: add missing MODULE_DESCRIPTION() macro
@ 2024-06-13 19:44 Jeff Johnson
  2024-06-19 16:34 ` Jason Gunthorpe
  2024-07-02 18:44 ` Will Deacon
  0 siblings, 2 replies; 4+ messages in thread
From: Jeff Johnson @ 2024-06-13 19:44 UTC (permalink / raw)
  To: Will Deacon, Robin Murphy, Joerg Roedel
  Cc: linux-arm-kernel, iommu, linux-kernel, kernel-janitors, Jeff Johnson

With ARCH=arm64, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-test.o

Add the missing invocation of the MODULE_DESCRIPTION() macro.

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
---
 drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-test.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-test.c b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-test.c
index 315e487fd990..eea554dddaeb 100644
--- a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-test.c
+++ b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-test.c
@@ -465,4 +465,5 @@ static struct kunit_suite arm_smmu_v3_test_module = {
 kunit_test_suites(&arm_smmu_v3_test_module);
 
 MODULE_IMPORT_NS(EXPORTED_FOR_KUNIT_TESTING);
+MODULE_DESCRIPTION("KUnit tests for arm-smmu-v3 driver");
 MODULE_LICENSE("GPL v2");

---
base-commit: 83a7eefedc9b56fe7bfeff13b6c7356688ffa670
change-id: 20240613-md-arm64-drivers-iommu-arm-arm-smmu-v3-113449cddcba


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

* Re: [PATCH] iommu/arm-smmu-v3: add missing MODULE_DESCRIPTION() macro
  2024-06-13 19:44 [PATCH] iommu/arm-smmu-v3: add missing MODULE_DESCRIPTION() macro Jeff Johnson
@ 2024-06-19 16:34 ` Jason Gunthorpe
  2024-06-29  2:47   ` Jeff Johnson
  2024-07-02 18:44 ` Will Deacon
  1 sibling, 1 reply; 4+ messages in thread
From: Jason Gunthorpe @ 2024-06-19 16:34 UTC (permalink / raw)
  To: Jeff Johnson
  Cc: Will Deacon, Robin Murphy, Joerg Roedel, linux-arm-kernel, iommu,
	linux-kernel, kernel-janitors

On Thu, Jun 13, 2024 at 12:44:17PM -0700, Jeff Johnson wrote:
> With ARCH=arm64, make allmodconfig && make W=1 C=1 reports:
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-test.o

Weird I never saw that..

> Add the missing invocation of the MODULE_DESCRIPTION() macro.
> 
> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
> ---
>  drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-test.c | 1 +
>  1 file changed, 1 insertion(+)

Fixes: da55da5a42d4 ("iommu/arm-smmu-v3: Make the kunit into a module")
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>

Jason

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

* Re: [PATCH] iommu/arm-smmu-v3: add missing MODULE_DESCRIPTION() macro
  2024-06-19 16:34 ` Jason Gunthorpe
@ 2024-06-29  2:47   ` Jeff Johnson
  0 siblings, 0 replies; 4+ messages in thread
From: Jeff Johnson @ 2024-06-29  2:47 UTC (permalink / raw)
  To: Jason Gunthorpe, Will Deacon, Robin Murphy, Joerg Roedel
  Cc: linux-arm-kernel, iommu, linux-kernel, kernel-janitors

On 6/19/2024 9:34 AM, Jason Gunthorpe wrote:
> On Thu, Jun 13, 2024 at 12:44:17PM -0700, Jeff Johnson wrote:
>> With ARCH=arm64, make allmodconfig && make W=1 C=1 reports:
>> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-test.o
> 
> Weird I never saw that..
> 
>> Add the missing invocation of the MODULE_DESCRIPTION() macro.
>>
>> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
>> ---
>>  drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-test.c | 1 +
>>  1 file changed, 1 insertion(+)
> 
> Fixes: da55da5a42d4 ("iommu/arm-smmu-v3: Make the kunit into a module")
> Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>

Following up to see if anything else is needed from me. Hoping to see this in
linux-next so I can remove it from my tracking spreadsheet :)

/jeff


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

* Re: [PATCH] iommu/arm-smmu-v3: add missing MODULE_DESCRIPTION() macro
  2024-06-13 19:44 [PATCH] iommu/arm-smmu-v3: add missing MODULE_DESCRIPTION() macro Jeff Johnson
  2024-06-19 16:34 ` Jason Gunthorpe
@ 2024-07-02 18:44 ` Will Deacon
  1 sibling, 0 replies; 4+ messages in thread
From: Will Deacon @ 2024-07-02 18:44 UTC (permalink / raw)
  To: Robin Murphy, Joerg Roedel, Jeff Johnson
  Cc: catalin.marinas, kernel-team, Will Deacon, linux-arm-kernel,
	iommu, linux-kernel, kernel-janitors

On Thu, 13 Jun 2024 12:44:17 -0700, Jeff Johnson wrote:
> With ARCH=arm64, make allmodconfig && make W=1 C=1 reports:
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-test.o
> 
> Add the missing invocation of the MODULE_DESCRIPTION() macro.
> 
> 

Applied to will (for-joerg/arm-smmu/updates), thanks!

[1/1] iommu/arm-smmu-v3: add missing MODULE_DESCRIPTION() macro
      https://git.kernel.org/will/c/a35f443d837f

Cheers,
-- 
Will

https://fixes.arm64.dev
https://next.arm64.dev
https://will.arm64.dev

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

end of thread, other threads:[~2024-07-02 18:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-13 19:44 [PATCH] iommu/arm-smmu-v3: add missing MODULE_DESCRIPTION() macro Jeff Johnson
2024-06-19 16:34 ` Jason Gunthorpe
2024-06-29  2:47   ` Jeff Johnson
2024-07-02 18:44 ` Will Deacon

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

all inboxes | Powered by JetHome®