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

kunit/usercopy: Add missing MODULE_DESCRIPTION()

Fix warning seen with:

$ make allmodconfig && make W=1 C=1 lib/usercopy_kunit.ko
WARNING: modpost: missing MODULE_DESCRIPTION() in lib/usercopy_kunit.o

Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Signed-off-by: Kees Cook <kees@kernel.org>
Reviewed-by: Rae Moar <rmoar@google.com>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

authored by

Jeff Johnson and committed by
Shuah Khan
67c9971c 4d6cf248

+1
+1
lib/usercopy_kunit.c
··· 331 331 332 332 kunit_test_suites(&usercopy_test_suite); 333 333 MODULE_AUTHOR("Kees Cook <kees@kernel.org>"); 334 + MODULE_DESCRIPTION("Kernel module for testing copy_to/from_user infrastructure"); 334 335 MODULE_LICENSE("GPL");