From: Marco Pagani <marco.pagani@linux•dev>
To: Arnd Bergmann <arnd@kernel•org>,
Jeff Johnson <jeff.johnson@oss•qualcomm.com>,
Andrew Morton <akpm@linux-foundation•org>,
Masahiro Yamada <masahiroy@kernel•org>,
Moritz Fischer <mdf@kernel•org>, Wu Hao <hao.wu@intel•com>,
Xu Yilun <yilun.xu@intel•com>
Cc: Stephen Rothwell <sfr@canb•auug.org.au>,
linux-next@vger•kernel.org, Arnd Bergmann <arnd@arndb•de>,
Tom Rix <trix@redhat•com>, Marco Pagani <marpagan@redhat•com>,
Russ Weight <russ.weight@linux•dev>,
linux-fpga@vger•kernel.org, linux-kernel@vger•kernel.org
Subject: Re: [PATCH 04/10] fpga: tests: add module descriptions
Date: Tue, 25 Mar 2025 18:06:51 +0100 [thread overview]
Message-ID: <6ab8b951-a2be-4434-8621-0b31d00608ad@linux.dev> (raw)
In-Reply-To: <20250324173242.1501003-4-arnd@kernel.org>
On 2025-03-24 18:32, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb•de>
>
> Modules without a description now cause a warning:
>
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/fpga/tests/fpga-bridge-test.o
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/fpga/tests/fpga-mgr-test.o
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/fpga/tests/fpga-region-test.o
>
> Signed-off-by: Arnd Bergmann <arnd@arndb•de>
Reviewed-by: Marco Pagani <marco.pagani@linux•dev>
> ---
> drivers/fpga/tests/fpga-bridge-test.c | 1 +
> drivers/fpga/tests/fpga-mgr-test.c | 1 +
> drivers/fpga/tests/fpga-region-test.c | 1 +
> 3 files changed, 3 insertions(+)
>
> diff --git a/drivers/fpga/tests/fpga-bridge-test.c b/drivers/fpga/tests/fpga-bridge-test.c
> index b9ab29809e96..124ba40e32b1 100644
> --- a/drivers/fpga/tests/fpga-bridge-test.c
> +++ b/drivers/fpga/tests/fpga-bridge-test.c
> @@ -170,4 +170,5 @@ static struct kunit_suite fpga_bridge_suite = {
>
> kunit_test_suite(fpga_bridge_suite);
>
> +MODULE_DESCRIPTION("KUnit test for the FPGA Bridge");
> MODULE_LICENSE("GPL");
> diff --git a/drivers/fpga/tests/fpga-mgr-test.c b/drivers/fpga/tests/fpga-mgr-test.c
> index 9cb37aefbac4..8748babb0504 100644
> --- a/drivers/fpga/tests/fpga-mgr-test.c
> +++ b/drivers/fpga/tests/fpga-mgr-test.c
> @@ -330,4 +330,5 @@ static struct kunit_suite fpga_mgr_suite = {
>
> kunit_test_suite(fpga_mgr_suite);
>
> +MODULE_DESCRIPTION("KUnit test for the FPGA Manager");
> MODULE_LICENSE("GPL");
> diff --git a/drivers/fpga/tests/fpga-region-test.c b/drivers/fpga/tests/fpga-region-test.c
> index 6a108cafded8..020ceac48509 100644
> --- a/drivers/fpga/tests/fpga-region-test.c
> +++ b/drivers/fpga/tests/fpga-region-test.c
> @@ -214,4 +214,5 @@ static struct kunit_suite fpga_region_suite = {
>
> kunit_test_suite(fpga_region_suite);
>
> +MODULE_DESCRIPTION("KUnit test for the FPGA Region");
> MODULE_LICENSE("GPL");
next prev parent reply other threads:[~2025-03-25 17:06 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-24 17:32 [PATCH 01/10] exportfs: add module description Arnd Bergmann
2025-03-24 17:32 ` [PATCH 02/10] ASN.1: " Arnd Bergmann
2025-04-06 18:21 ` Geert Uytterhoeven
2025-03-24 17:32 ` [PATCH 03/10] samples/livepatch: add module descriptions Arnd Bergmann
2025-03-25 10:01 ` Petr Mladek
2025-03-25 15:03 ` Jeff Johnson
2025-03-24 17:32 ` [PATCH 04/10] fpga: tests: " Arnd Bergmann
2025-03-25 17:06 ` Marco Pagani [this message]
2025-04-25 4:27 ` Xu Yilun
2025-03-24 17:32 ` [PATCH 05/10] xenbus: add module description Arnd Bergmann
2025-03-27 16:43 ` Jürgen Groß
2025-03-24 17:32 ` [PATCH 06/10] zlib: " Arnd Bergmann
2025-03-24 17:32 ` [PATCH 07/10] ucs2_string: " Arnd Bergmann
2025-03-24 17:32 ` [PATCH 08/10] kunit: add module description for backtrace suppression test Arnd Bergmann
2025-03-24 17:32 ` [PATCH 09/10] mm/kasan: add module decription Arnd Bergmann
2025-03-24 22:00 ` Andrey Konovalov
2025-03-24 17:32 ` [PATCH 10/10] kunit: slub: add module description Arnd Bergmann
2025-03-25 14:58 ` (subset) [PATCH 01/10] exportfs: " Christian Brauner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=6ab8b951-a2be-4434-8621-0b31d00608ad@linux.dev \
--to=marco.pagani@linux$(echo .)dev \
--cc=akpm@linux-foundation$(echo .)org \
--cc=arnd@arndb$(echo .)de \
--cc=arnd@kernel$(echo .)org \
--cc=hao.wu@intel$(echo .)com \
--cc=jeff.johnson@oss$(echo .)qualcomm.com \
--cc=linux-fpga@vger$(echo .)kernel.org \
--cc=linux-kernel@vger$(echo .)kernel.org \
--cc=linux-next@vger$(echo .)kernel.org \
--cc=marpagan@redhat$(echo .)com \
--cc=masahiroy@kernel$(echo .)org \
--cc=mdf@kernel$(echo .)org \
--cc=russ.weight@linux$(echo .)dev \
--cc=sfr@canb$(echo .)auug.org.au \
--cc=trix@redhat$(echo .)com \
--cc=yilun.xu@intel$(echo .)com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox