diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-05-30 01:31:58 +0200 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2024-06-29 04:36:30 +0200 |
commit | 6073496a20c5e2e8eee63c50af4b30fb2f521643 (patch) | |
tree | 6d086f007413d69d35d21de533a0cfb9592c7e8c /kernel | |
parent | kfifo: add missing MODULE_DESCRIPTION() macros (diff) | |
download | linux-6073496a20c5e2e8eee63c50af4b30fb2f521643.tar.xz linux-6073496a20c5e2e8eee63c50af4b30fb2f521643.zip |
resource: add missing MODULE_DESCRIPTION()
Fix the 'make W=1' warning:
WARNING: modpost: missing MODULE_DESCRIPTION() in kernel/resource_kunit.o
Link: https://lkml.kernel.org/r/20240529-md-kernel-resource_kunit-v1-1-bb719784b714@quicinc.com
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/resource_kunit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/resource_kunit.c b/kernel/resource_kunit.c index 58ab9f914602..0e509985a44a 100644 --- a/kernel/resource_kunit.c +++ b/kernel/resource_kunit.c @@ -149,4 +149,5 @@ static struct kunit_suite resource_test_suite = { }; kunit_test_suite(resource_test_suite); +MODULE_DESCRIPTION("I/O Port & Memory Resource manager unit tests"); MODULE_LICENSE("GPL"); |