diff options
| author | Jeff Johnson <[email protected]> | 2024-05-31 23:45:16 +0000 |
|---|---|---|
| committer | Andrew Morton <[email protected]> | 2024-06-25 05:25:07 +0000 |
| commit | 09aaf15a7826717b75d2b4305daaee099636ca5c (patch) | |
| tree | e38e913e5756ba9b4440e656bfbc629efc4124d2 /lib/test_linear_ranges.c | |
| parent | lib/test_kmod: add missing MODULE_DESCRIPTION() macro (diff) | |
| download | kernel-09aaf15a7826717b75d2b4305daaee099636ca5c.tar.gz kernel-09aaf15a7826717b75d2b4305daaee099636ca5c.zip | |
lib/test_linear_ranges: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in lib/test_linear_ranges.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]>
Reviewed-by: Matti Vaittinen <[email protected]>
Cc: Mark Brown <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Diffstat (limited to 'lib/test_linear_ranges.c')
| -rw-r--r-- | lib/test_linear_ranges.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/test_linear_ranges.c b/lib/test_linear_ranges.c index c18f9c0f1f25..f482be00f1bc 100644 --- a/lib/test_linear_ranges.c +++ b/lib/test_linear_ranges.c @@ -216,4 +216,5 @@ static struct kunit_suite range_test_module = { kunit_test_suites(&range_test_module); +MODULE_DESCRIPTION("KUnit test for the linear_ranges helper"); MODULE_LICENSE("GPL"); |
