diff options
author | 2024-05-08 11:11:23 +0200 | |
---|---|---|
committer | 2024-05-09 10:13:07 +0200 | |
commit | 568d0ae72a281d5a08ac1a092e3adb85eff7aee3 (patch) | |
tree | 4e9d8baf753abd7e2ef26e1c12497b8b9699f5ee | |
parent | ALSA: pcm_dmaengine: Add missing module description (diff) | |
download | linux-rng-568d0ae72a281d5a08ac1a092e3adb85eff7aee3.tar.xz linux-rng-568d0ae72a281d5a08ac1a092e3adb85eff7aee3.zip |
ALSA: kunit: Add missing module descriptions
Now that make W=1 starts complaining the lack of MODULE_DESCRIPTION(),
let's add the missing information.
Reported-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Closes: https://lore.kernel.org/r/ZjpQm-hxLQtpgkUx@smile.fi.intel.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Dragan Simic <dsimic@manjaro.org>
Link: https://lore.kernel.org/r/20240508091128.25274-5-tiwai@suse.de
-rw-r--r-- | sound/core/sound_kunit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/core/sound_kunit.c b/sound/core/sound_kunit.c index 165bd0f5338a..bfed1a25fc8f 100644 --- a/sound/core/sound_kunit.c +++ b/sound/core/sound_kunit.c @@ -308,5 +308,6 @@ static struct kunit_suite sound_utils_suite = { }; kunit_test_suite(sound_utils_suite); +MODULE_DESCRIPTION("Sound core KUnit test"); MODULE_AUTHOR("Ivan Orlov"); MODULE_LICENSE("GPL"); |