* [PATCH] ASoC: fsl: imx-pcm-fiq: add missing MODULE_DESCRIPTION() macro
@ 2024-06-16 6:42 Jeff Johnson
2024-06-16 7:14 ` Christophe JAILLET
0 siblings, 1 reply; 3+ messages in thread
From: Jeff Johnson @ 2024-06-16 6:42 UTC (permalink / raw)
To: Shengjiu Wang, Xiubo Li, Fabio Estevam, Nicolin Chen,
Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
Shawn Guo, Sascha Hauer, Pengutronix Kernel Team
Cc: alsa-devel, linuxppc-dev, linux-sound, imx, linux-arm-kernel,
linux-kernel, kernel-janitors, Jeff Johnson
With ARCH=arm, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in sound/soc/fsl/imx-pcm-fiq.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
---
sound/soc/fsl/imx-pcm-fiq.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/soc/fsl/imx-pcm-fiq.c b/sound/soc/fsl/imx-pcm-fiq.c
index 0d124002678e..5ea6dd4c89a1 100644
--- a/sound/soc/fsl/imx-pcm-fiq.c
+++ b/sound/soc/fsl/imx-pcm-fiq.c
@@ -319,4 +319,5 @@ void imx_pcm_fiq_exit(struct platform_device *pdev)
}
EXPORT_SYMBOL_GPL(imx_pcm_fiq_exit);
+MODULE_DESCRIPTION("Freescle i.MX PCM FIQ handler");
MODULE_LICENSE("GPL");
---
base-commit: 83a7eefedc9b56fe7bfeff13b6c7356688ffa670
change-id: 20240615-md-arm-sound-soc-fsl-c598fb353e69
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ASoC: fsl: imx-pcm-fiq: add missing MODULE_DESCRIPTION() macro
2024-06-16 6:42 [PATCH] ASoC: fsl: imx-pcm-fiq: add missing MODULE_DESCRIPTION() macro Jeff Johnson
@ 2024-06-16 7:14 ` Christophe JAILLET
2024-06-16 20:05 ` Jeff Johnson
0 siblings, 1 reply; 3+ messages in thread
From: Christophe JAILLET @ 2024-06-16 7:14 UTC (permalink / raw)
To: Jeff Johnson, Shengjiu Wang, Xiubo Li, Fabio Estevam,
Nicolin Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela,
Takashi Iwai, Shawn Guo, Sascha Hauer, Pengutronix Kernel Team
Cc: alsa-devel, linuxppc-dev, linux-sound, imx, linux-arm-kernel,
linux-kernel, kernel-janitors
Le 16/06/2024 à 08:42, Jeff Johnson a écrit :
> With ARCH=arm, make allmodconfig && make W=1 C=1 reports:
> WARNING: modpost: missing MODULE_DESCRIPTION() in sound/soc/fsl/imx-pcm-fiq.o
>
> Add the missing invocation of the MODULE_DESCRIPTION() macro.
>
> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
> ---
> sound/soc/fsl/imx-pcm-fiq.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/sound/soc/fsl/imx-pcm-fiq.c b/sound/soc/fsl/imx-pcm-fiq.c
> index 0d124002678e..5ea6dd4c89a1 100644
> --- a/sound/soc/fsl/imx-pcm-fiq.c
> +++ b/sound/soc/fsl/imx-pcm-fiq.c
> @@ -319,4 +319,5 @@ void imx_pcm_fiq_exit(struct platform_device *pdev)
> }
> EXPORT_SYMBOL_GPL(imx_pcm_fiq_exit);
>
> +MODULE_DESCRIPTION("Freescle i.MX PCM FIQ handler");
Freescale? (missing 'a')
CJ
> MODULE_LICENSE("GPL");
>
> ---
> base-commit: 83a7eefedc9b56fe7bfeff13b6c7356688ffa670
> change-id: 20240615-md-arm-sound-soc-fsl-c598fb353e69
>
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ASoC: fsl: imx-pcm-fiq: add missing MODULE_DESCRIPTION() macro
2024-06-16 7:14 ` Christophe JAILLET
@ 2024-06-16 20:05 ` Jeff Johnson
0 siblings, 0 replies; 3+ messages in thread
From: Jeff Johnson @ 2024-06-16 20:05 UTC (permalink / raw)
To: Christophe JAILLET, Shengjiu Wang, Xiubo Li, Fabio Estevam,
Nicolin Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela,
Takashi Iwai, Shawn Guo, Sascha Hauer, Pengutronix Kernel Team
Cc: alsa-devel, linuxppc-dev, linux-sound, imx, linux-arm-kernel,
linux-kernel, kernel-janitors
On 6/16/2024 12:14 AM, Christophe JAILLET wrote:
> Le 16/06/2024 à 08:42, Jeff Johnson a écrit :
>> With ARCH=arm, make allmodconfig && make W=1 C=1 reports:
>> WARNING: modpost: missing MODULE_DESCRIPTION() in sound/soc/fsl/imx-pcm-fiq.o
>>
>> Add the missing invocation of the MODULE_DESCRIPTION() macro.
>>
>> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
>> ---
>> sound/soc/fsl/imx-pcm-fiq.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/sound/soc/fsl/imx-pcm-fiq.c b/sound/soc/fsl/imx-pcm-fiq.c
>> index 0d124002678e..5ea6dd4c89a1 100644
>> --- a/sound/soc/fsl/imx-pcm-fiq.c
>> +++ b/sound/soc/fsl/imx-pcm-fiq.c
>> @@ -319,4 +319,5 @@ void imx_pcm_fiq_exit(struct platform_device *pdev)
>> }
>> EXPORT_SYMBOL_GPL(imx_pcm_fiq_exit);
>>
>> +MODULE_DESCRIPTION("Freescle i.MX PCM FIQ handler");
>
> Freescale? (missing 'a')
thanks for the catch, will send a v2
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-06-16 20:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-16 6:42 [PATCH] ASoC: fsl: imx-pcm-fiq: add missing MODULE_DESCRIPTION() macro Jeff Johnson
2024-06-16 7:14 ` Christophe JAILLET
2024-06-16 20:05 ` Jeff Johnson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox