Skip to content

Commit dd5cb1b

Browse files
committed
ASoC: Add missing module descriptions
Merge series from Takashi Iwai <tiwai@suse.de>: Hi, here is a trivial patch series to add the missing module descriptions to ASoC drivers, as make W=1 starts complaining the lack of MODULE_DESCRIPTION() since recently. The whole sound/soc/sof/* are untouched as there are too many files involved, and I left SOF people to address them. thanks, Takashi === Takashi Iwai (7): ASoC: ab8500: Add missing module description ASoC: sigmadsp: Add missing module description ASoC: qcom: Add missing module descriptions ASoC: dmaengine: Add missing module description ASoC: topology-test: Add missing module description ASoC: ux500: Add missing module description ASoC: xilinx: Add missing module descriptions sound/soc/codecs/ab8500-codec.c | 1 + sound/soc/codecs/sigmadsp.c | 1 + sound/soc/qcom/common.c | 2 ++ sound/soc/qcom/qdsp6/q6dsp-common.c | 2 ++ sound/soc/soc-generic-dmaengine-pcm.c | 1 + sound/soc/soc-topology-test.c | 1 + sound/soc/ux500/ux500_msp_dai.c | 1 + sound/soc/xilinx/xlnx_formatter_pcm.c | 2 ++ sound/soc/xilinx/xlnx_i2s.c | 1 + 9 files changed, 12 insertions(+) -- 2.43.0
2 parents c6f597b + 3423ad1 commit dd5cb1b

File tree

9 files changed

+12
-0
lines changed

9 files changed

+12
-0
lines changed

sound/soc/codecs/ab8500-codec.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2571,4 +2571,5 @@ static struct platform_driver ab8500_codec_platform_driver = {
25712571
};
25722572
module_platform_driver(ab8500_codec_platform_driver);
25732573

2574+
MODULE_DESCRIPTION("ASoC AB8500 codec driver");
25742575
MODULE_LICENSE("GPL v2");

sound/soc/codecs/sigmadsp.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -805,4 +805,5 @@ int sigmadsp_restrict_params(struct sigmadsp *sigmadsp,
805805
}
806806
EXPORT_SYMBOL_GPL(sigmadsp_restrict_params);
807807

808+
MODULE_DESCRIPTION("Analog Devices SigmaStudio firmware helpers");
808809
MODULE_LICENSE("GPL");

sound/soc/qcom/common.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,4 +239,6 @@ int qcom_snd_wcd_jack_setup(struct snd_soc_pcm_runtime *rtd,
239239
return 0;
240240
}
241241
EXPORT_SYMBOL_GPL(qcom_snd_wcd_jack_setup);
242+
243+
MODULE_DESCRIPTION("ASoC Qualcomm helper functions");
242244
MODULE_LICENSE("GPL");

sound/soc/qcom/qdsp6/q6dsp-common.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,6 @@ int q6dsp_get_channel_allocation(int channels)
9898
return channel_allocation;
9999
}
100100
EXPORT_SYMBOL_GPL(q6dsp_get_channel_allocation);
101+
102+
MODULE_DESCRIPTION("ASoC MSM QDSP6 helper functions");
101103
MODULE_LICENSE("GPL v2");

sound/soc/soc-generic-dmaengine-pcm.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,4 +494,5 @@ void snd_dmaengine_pcm_unregister(struct device *dev)
494494
}
495495
EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_unregister);
496496

497+
MODULE_DESCRIPTION("ASoC helpers for generic PCM dmaengine API");
497498
MODULE_LICENSE("GPL");

sound/soc/soc-topology-test.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -819,4 +819,5 @@ static struct kunit_suite snd_soc_tplg_test_suite = {
819819

820820
kunit_test_suites(&snd_soc_tplg_test_suite);
821821

822+
MODULE_DESCRIPTION("ASoC Topology Kernel Unit Tests");
822823
MODULE_LICENSE("GPL");

sound/soc/ux500/ux500_msp_dai.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -820,4 +820,5 @@ static struct platform_driver msp_i2s_driver = {
820820
};
821821
module_platform_driver(msp_i2s_driver);
822822

823+
MODULE_DESCRIPTION("ASoC Ux500 I2S driver");
823824
MODULE_LICENSE("GPL v2");

sound/soc/xilinx/xlnx_formatter_pcm.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -721,5 +721,7 @@ static struct platform_driver xlnx_formatter_pcm_driver = {
721721
};
722722

723723
module_platform_driver(xlnx_formatter_pcm_driver);
724+
725+
MODULE_DESCRIPTION("ASoC driver for Xilinx audio formatter");
724726
MODULE_AUTHOR("Maruthi Srinivas Bayyavarapu <maruthis@xilinx.com>");
725727
MODULE_LICENSE("GPL v2");

sound/soc/xilinx/xlnx_i2s.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ static struct platform_driver xlnx_i2s_aud_driver = {
253253

254254
module_platform_driver(xlnx_i2s_aud_driver);
255255

256+
MODULE_DESCRIPTION("ASoC driver for Xilinx I2S audio");
256257
MODULE_LICENSE("GPL v2");
257258
MODULE_AUTHOR("Praveen Vuppala <praveenv@xilinx.com>");
258259
MODULE_AUTHOR("Maruthi Srinivas Bayyavarapu <maruthis@xilinx.com>");

0 commit comments

Comments
 (0)