diff options
| author | Jeff Johnson <[email protected]> | 2024-05-29 16:31:58 -0700 |
|---|---|---|
| committer | Andrew Morton <[email protected]> | 2024-06-28 19:36:30 -0700 |
| commit | 6073496a20c5e2e8eee63c50af4b30fb2f521643 (patch) | |
| tree | 6d086f007413d69d35d21de533a0cfb9592c7e8c /kernel | |
| parent | 9059044b6717b0c100e3ad63c5bad3ec13df0fc4 (diff) | |
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/[email protected]
Signed-off-by: Jeff Johnson <[email protected]>
Cc: Andy Shevchenko <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
Cc: Rafael J. Wysocki <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
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"); |