mptcp: fill in missing MODULE_DESCRIPTION()
authorMatthieu Baerts <matttbe@kernel.org>
Fri, 15 Dec 2023 16:04:26 +0000 (17:04 +0100)
committerDavid S. Miller <davem@davemloft.net>
Sun, 17 Dec 2023 20:54:22 +0000 (20:54 +0000)
W=1 builds warn on missing MODULE_DESCRIPTION, add them here in MPTCP.

Only two were missing: two modules with different KUnit tests for MPTCP.

Reviewed-by: Mat Martineau <martineau@kernel.org>
Signed-off-by: Matthieu Baerts <matttbe@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/mptcp/crypto_test.c
net/mptcp/token_test.c

index 017248dea038c1c1055c58b3f411087b23009b66..220414e5c850f4936c89888e825e48ecf1638e17 100644 (file)
@@ -70,3 +70,4 @@ static struct kunit_suite mptcp_crypto_suite = {
 kunit_test_suite(mptcp_crypto_suite);
 
 MODULE_LICENSE("GPL");
+MODULE_DESCRIPTION("KUnit tests for MPTCP Crypto");
index 0758865ab658ead6fec8acb96934eb392331b9b6..bfff53e668da68297c1e5b9c92c8fab45595b402 100644 (file)
@@ -143,3 +143,4 @@ static struct kunit_suite mptcp_token_suite = {
 kunit_test_suite(mptcp_token_suite);
 
 MODULE_LICENSE("GPL");
+MODULE_DESCRIPTION("KUnit tests for MPTCP Token");