]> Git Repo - linux.git/commitdiff
firewire: add missing MODULE_DESCRIPTION() to test modules
authorJeff Johnson <[email protected]>
Thu, 23 May 2024 23:22:34 +0000 (16:22 -0700)
committerTakashi Sakamoto <[email protected]>
Sun, 26 May 2024 22:34:58 +0000 (07:34 +0900)
Fix the 'make W=1' warnings:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/firewire/uapi-test.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/firewire/packet-serdes-test.o

Signed-off-by: Jeff Johnson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Takashi Sakamoto <[email protected]>
drivers/firewire/packet-serdes-test.c
drivers/firewire/uapi-test.c

index f93c966e794d97b914b1d681990d6f8a4109b8ae..e83b1fece780eeae4a50d6dbe943085778649e63 100644 (file)
@@ -579,4 +579,5 @@ static struct kunit_suite packet_serdes_test_suite = {
 };
 kunit_test_suite(packet_serdes_test_suite);
 
+MODULE_DESCRIPTION("FireWire packet serialization/deserialization unit test suite");
 MODULE_LICENSE("GPL");
index 2fcbede4fab1f51a622df0511b9695fc9d400175..bc3f10a2e516e076ee63d762b9d1e538fb44f8c2 100644 (file)
@@ -86,4 +86,5 @@ static struct kunit_suite structure_layout_test_suite = {
 };
 kunit_test_suite(structure_layout_test_suite);
 
+MODULE_DESCRIPTION("FireWire UAPI unit test suite");
 MODULE_LICENSE("GPL");
This page took 0.055022 seconds and 4 git commands to generate.