diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-02 09:30:13 -0700 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-06-03 15:59:19 +0100 |
commit | a73a83021ae136ab6b0d08eb196d84b1d02814e9 (patch) | |
tree | 909e6592d48b25c3ad08c9f630a71cb4105434e5 /sound | |
parent | d3cb3516f2540e6c384eef96b4ffeb49425175ed (diff) | |
download | linux-stable-a73a83021ae136ab6b0d08eb196d84b1d02814e9.tar.gz linux-stable-a73a83021ae136ab6b0d08eb196d84b1d02814e9.tar.bz2 linux-stable-a73a83021ae136ab6b0d08eb196d84b1d02814e9.zip |
ASoC: mxs: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in sound/soc/mxs/snd-soc-mxs-pcm.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link: https://msgid.link/r/20240602-md-snd-soc-mxs-pcm-v1-1-1e663d11328d@quicinc.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/mxs/mxs-pcm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/mxs/mxs-pcm.c b/sound/soc/mxs/mxs-pcm.c index df2e4be992d2..9bb08cadeb18 100644 --- a/sound/soc/mxs/mxs-pcm.c +++ b/sound/soc/mxs/mxs-pcm.c @@ -43,4 +43,5 @@ int mxs_pcm_platform_register(struct device *dev) } EXPORT_SYMBOL_GPL(mxs_pcm_platform_register); +MODULE_DESCRIPTION("MXS ASoC PCM driver"); MODULE_LICENSE("GPL"); |