Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fpga: tests: add module descriptions

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

Link: https://lkml.kernel.org/r/20250324173242.1501003-4-arnd@kernel.org
Fixes: 6c6c1fc09de3 ("modpost: require a MODULE_DESCRIPTION()")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Hao Wu <hao.wu@intel.com>
Cc: Jeff Johnson <jeff.johnson@oss.qualcomm.com>
Cc: Marco Pagani <marpagan@redhat.com>
Cc: Masahiro Yamada <masahiroy@kernel.org>
Cc: Moritz Fischer <mdf@kernel.org>
Cc: Russ Weight <russ.weight@linux.dev>
Cc: Stehen Rothwell <sfr@canb.auug.org.au>
Cc: Tom Rix <trix@redhat.com>
Cc: Xu Yilun <yilun.xu@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

Arnd Bergmann and committed by
Andrew Morton
6810431b 10764175

+3
+1
drivers/fpga/tests/fpga-bridge-test.c
··· 170 170 171 171 kunit_test_suite(fpga_bridge_suite); 172 172 173 + MODULE_DESCRIPTION("KUnit test for the FPGA Bridge"); 173 174 MODULE_LICENSE("GPL");
+1
drivers/fpga/tests/fpga-mgr-test.c
··· 330 330 331 331 kunit_test_suite(fpga_mgr_suite); 332 332 333 + MODULE_DESCRIPTION("KUnit test for the FPGA Manager"); 333 334 MODULE_LICENSE("GPL");
+1
drivers/fpga/tests/fpga-region-test.c
··· 214 214 215 215 kunit_test_suite(fpga_region_suite); 216 216 217 + MODULE_DESCRIPTION("KUnit test for the FPGA Region"); 217 218 MODULE_LICENSE("GPL");