Message ID | 20240508091909.27062-2-tiwai@suse.de (mailing list archive) |
---|---|
State | Accepted |
Commit | 1dec672e8686b824aa8742cf9cc00748289de95b |
Headers | show |
Series | ASoC: Add missing module descriptions | expand |
On Wed, May 08, 2024 at 11:19:00AM +0200, Takashi Iwai wrote: > Now that make W=1 starts complaining the lack of MODULE_DESCRIPTION(), > let's add the missing information. Probably Reported-by: fits better, but I'm fine with either. Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> P.S. I don't see cover letter, so the tag applies to all patches.
diff --git a/sound/soc/codecs/ab8500-codec.c b/sound/soc/codecs/ab8500-codec.c index 68342917419e..04b5e1d5a653 100644 --- a/sound/soc/codecs/ab8500-codec.c +++ b/sound/soc/codecs/ab8500-codec.c @@ -2571,4 +2571,5 @@ static struct platform_driver ab8500_codec_platform_driver = { }; module_platform_driver(ab8500_codec_platform_driver); +MODULE_DESCRIPTION("ASoC AB8500 codec driver"); MODULE_LICENSE("GPL v2");
Now that make W=1 starts complaining the lack of MODULE_DESCRIPTION(), let's add the missing information. Suggested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/ZjpQm-hxLQtpgkUx@smile.fi.intel.com Signed-off-by: Takashi Iwai <tiwai@suse.de> --- sound/soc/codecs/ab8500-codec.c | 1 + 1 file changed, 1 insertion(+)