diff options
author | Jeff Johnson <[email protected]> | 2024-05-31 19:06:48 -0700 |
---|---|---|
committer | Andrew Morton <[email protected]> | 2024-07-03 19:30:05 -0700 |
commit | 2ec83987a53e30f3b07090ebd3a03cc7febfc34c (patch) | |
tree | ab86ad23ffc18f0390e9402db3efc9a9388699b8 | |
parent | 757234f1ad673e0f86698d75f7fc3bff930b5636 (diff) |
ubsan: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_ubsan.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Jeff Johnson <[email protected]>
Cc: Andrey Konovalov <[email protected]>
Cc: Andrey Ryabinin <[email protected]>
Cc: Kees Cook <[email protected]>
Cc: Marco Elver <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
-rw-r--r-- | lib/test_ubsan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/test_ubsan.c b/lib/test_ubsan.c index c288df9372ed..5d7b10e98610 100644 --- a/lib/test_ubsan.c +++ b/lib/test_ubsan.c @@ -156,4 +156,5 @@ static void __exit test_ubsan_exit(void) module_exit(test_ubsan_exit); MODULE_AUTHOR("Jinbum Park <[email protected]>"); +MODULE_DESCRIPTION("UBSAN unit test"); MODULE_LICENSE("GPL v2"); |