diff options
author | Cristian Ciocaltea <cristian.ciocaltea@collabora.com> | 2023-12-09 23:32:22 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-12-18 17:03:52 +0300 |
commit | 6e202e758b4b8d85dfb909c8eb710db8c6160303 (patch) | |
tree | 5c26c73e940ea352b1acde9f5f11ae98b84c89ea /sound | |
parent | 78d3924675d4e076faa5600b48b8565fcb135ee0 (diff) | |
download | linux-6e202e758b4b8d85dfb909c8eb710db8c6160303.tar.xz |
ASoC: amd: acp-config: Add missing MODULE_DESCRIPTION
Add the missing MODULE_DESCRIPTION() to avoid the following warning when
building with W=1:
WARNING: modpost: missing MODULE_DESCRIPTION() in sound/soc/amd/snd-acp-config.o
Fixes: f1bdd8d385a8 ("ASoC: amd: Add module to determine ACP configuration")
Signed-off-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Link: https://msgid.link/r/20231209203229.878730-5-cristian.ciocaltea@collabora.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/amd/acp-config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/amd/acp-config.c b/sound/soc/amd/acp-config.c index 067b1fdfbc9d..65420ccc7623 100644 --- a/sound/soc/amd/acp-config.c +++ b/sound/soc/amd/acp-config.c @@ -307,4 +307,5 @@ struct snd_soc_acpi_mach snd_soc_acpi_amd_acp63_sof_machines[] = { }; EXPORT_SYMBOL(snd_soc_acpi_amd_acp63_sof_machines); +MODULE_DESCRIPTION("AMD ACP Machine Configuration Module"); MODULE_LICENSE("Dual BSD/GPL"); |