diff options
author | Masanari Iida <standby24x7@gmail.com> | 2014-11-11 10:52:23 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-11-18 10:01:31 -0500 |
commit | bb29a93b38610d2adc6ead40b75e1a1991617550 (patch) | |
tree | e64cca7912090a401e090372dd4506f9fe4d2f32 | |
parent | f114040e3ea6e07372334ade75d1ee0775c355e1 (diff) |
ASoC: jack: Fix warning while make htmldocs caused by soc-jack.c
This patch fix following errors while "make htmldocs" on
linux-next-20141110.
Warning(.//sound/soc/soc-jack.c:126): No description found for
parameter 'zones'
Warning(.//sound/soc/soc-jack.c:126): Excess function parameter
'zone' description in 'snd_soc_jack_add_zones'
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/soc-jack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-jack.c b/sound/soc/soc-jack.c index ab47fea997a3..ef1d42d7c6f6 100644 --- a/sound/soc/soc-jack.c +++ b/sound/soc/soc-jack.c | |||
@@ -116,7 +116,7 @@ EXPORT_SYMBOL_GPL(snd_soc_jack_report); | |||
116 | * | 116 | * |
117 | * @jack: ASoC jack | 117 | * @jack: ASoC jack |
118 | * @count: Number of zones | 118 | * @count: Number of zones |
119 | * @zone: Array of zones | 119 | * @zones: Array of zones |
120 | * | 120 | * |
121 | * After this function has been called the zones specified in the | 121 | * After this function has been called the zones specified in the |
122 | * array will be associated with the jack. | 122 | * array will be associated with the jack. |