From: Takashi Iwai Date: Wed, 8 May 2024 09:11:23 +0000 (+0200) Subject: ALSA: kunit: Add missing module descriptions X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=568d0ae72a281d5a08ac1a092e3adb85eff7aee3;p=linux.git 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 Closes: https://lore.kernel.org/r/ZjpQm-hxLQtpgkUx@smile.fi.intel.com Signed-off-by: Takashi Iwai Reviewed-by: Andy Shevchenko Reviewed-by: Dragan Simic Link: https://lore.kernel.org/r/20240508091128.25274-5-tiwai@suse.de --- diff --git a/sound/core/sound_kunit.c b/sound/core/sound_kunit.c index 165bd0f5338af..bfed1a25fc8f7 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");