From: Jeff Johnson Date: Wed, 29 May 2024 21:25:41 +0000 (-0700) Subject: sysctl: Add module description to sysctl-testing X-Git-Tag: v6.11-rc1~178^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c819e252c2874479b27f6a356b44f8aa73cf5a81;p=thirdparty%2Fkernel%2Flinux.git sysctl: Add module description to sysctl-testing Added a module description to sysctl Kunit self test module to fix the 'make W=1' warning (" WARNING: modpost: missing MODULE_DESCRIPTION() in kernel/sysctl-test.o") Signed-off-by: Jeff Johnson Signed-off-by: Joel Granados --- diff --git a/kernel/sysctl-test.c b/kernel/sysctl-test.c index 4e7dcc9187e25..3ac98bb7fb822 100644 --- a/kernel/sysctl-test.c +++ b/kernel/sysctl-test.c @@ -437,4 +437,5 @@ static struct kunit_suite sysctl_test_suite = { kunit_test_suites(&sysctl_test_suite); +MODULE_DESCRIPTION("KUnit test of proc sysctl"); MODULE_LICENSE("GPL v2");