diff options
author | Jeff Johnson <[email protected]> | 2024-05-18 16:18:39 -0700 |
---|---|---|
committer | Paul E. McKenney <[email protected]> | 2024-05-30 15:31:38 -0700 |
commit | a8469dc6917d9c40c77e1669394b13166314ac5c (patch) | |
tree | 55a07c29c0766bcb04a0fc2b32aab63dcd6d1def | |
parent | 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0 (diff) |
torture: Add MODULE_DESCRIPTION()
Fix the 'make W=1' warning:
WARNING: modpost: missing MODULE_DESCRIPTION() in kernel/torture.o
Signed-off-by: Jeff Johnson <[email protected]>
Signed-off-by: Paul E. McKenney <[email protected]>
-rw-r--r-- | kernel/torture.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/torture.c b/kernel/torture.c index c72ab2d251f4..dede150aef01 100644 --- a/kernel/torture.c +++ b/kernel/torture.c @@ -40,6 +40,7 @@ #include <linux/sched/rt.h> #include "rcu/rcu.h" +MODULE_DESCRIPTION("Common functions for in-kernel torture tests"); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Paul E. McKenney <[email protected]>"); |