Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit 54bec8e

Browse files
committed
Merge tag 'firewire-fixes-6.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394
Pull firewire fix from Takashi Sakamoto: "After merging a commit 1fffe7a ("script: modpost: emit a warning when the description is missing"), MODULE_DESCRIPTOR seems to be mandatory for kernel modules. In FireWire subsystem, the most of practical kernel modules have the field, while KUnit test modules do not. A single patch is applied to fix them" * tag 'firewire-fixes-6.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394: firewire: add missing MODULE_DESCRIPTION() to test modules
2 parents 89be402 + f94b777 commit 54bec8e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

drivers/firewire/packet-serdes-test.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -579,4 +579,5 @@ static struct kunit_suite packet_serdes_test_suite = {
579579
};
580580
kunit_test_suite(packet_serdes_test_suite);
581581

582+
MODULE_DESCRIPTION("FireWire packet serialization/deserialization unit test suite");
582583
MODULE_LICENSE("GPL");

drivers/firewire/uapi-test.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,5 @@ static struct kunit_suite structure_layout_test_suite = {
8686
};
8787
kunit_test_suite(structure_layout_test_suite);
8888

89+
MODULE_DESCRIPTION("FireWire UAPI unit test suite");
8990
MODULE_LICENSE("GPL");

0 commit comments

Comments
 (0)