diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-02 19:00:27 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-06-03 16:59:20 +0200 |
commit | 7478e15bcc16cbc0fa1b8c431163bf651033c088 (patch) | |
tree | 2ce2b9170b28cad663b994d74638e222336703c6 /sound | |
parent | ASoC: mxs: add missing MODULE_DESCRIPTION() macro (diff) | |
download | linux-7478e15bcc16cbc0fa1b8c431163bf651033c088.tar.xz linux-7478e15bcc16cbc0fa1b8c431163bf651033c088.zip |
ASoC: fsl: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in sound/soc/fsl/imx-pcm-dma.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-fsl-imx-pcm-dma-v1-1-e7efc33c6bf3@quicinc.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/fsl/imx-pcm-dma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/fsl/imx-pcm-dma.c b/sound/soc/fsl/imx-pcm-dma.c index 14e94270911c..4fa208d6a032 100644 --- a/sound/soc/fsl/imx-pcm-dma.c +++ b/sound/soc/fsl/imx-pcm-dma.c @@ -50,4 +50,5 @@ int imx_pcm_dma_init(struct platform_device *pdev) } EXPORT_SYMBOL_GPL(imx_pcm_dma_init); +MODULE_DESCRIPTION("Freescale i.MX PCM DMA interface"); MODULE_LICENSE("GPL"); |