diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-03 17:16:07 -0700 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-06-04 12:57:44 +0100 |
commit | 65909a7e7aa8b25c9cc5f04c1fd5d6f0f1d76fcd (patch) | |
tree | abfe2368565d51b19c9f16897f8e37e3719c7f59 /sound | |
parent | 968c974c08106fcf911d8d390d0f049af855d348 (diff) |
ASoC: qcom: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in sound/soc/qcom/snd-soc-qcom-sdw.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link: https://msgid.link/r/20240603-md-snd-soc-qcom-sdw-v1-1-101ea8bcdd38@quicinc.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/qcom/sdw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/qcom/sdw.c b/sound/soc/qcom/sdw.c index eaa8bb016e50..f2eda2ff46c0 100644 --- a/sound/soc/qcom/sdw.c +++ b/sound/soc/qcom/sdw.c @@ -160,4 +160,5 @@ int qcom_snd_sdw_hw_free(struct snd_pcm_substream *substream, return 0; } EXPORT_SYMBOL_GPL(qcom_snd_sdw_hw_free); +MODULE_DESCRIPTION("Qualcomm ASoC SoundWire helper functions"); MODULE_LICENSE("GPL"); |