Kerneldoc expects parameter documentation to be in the format '@.*: '.
If that convention is not followed, the kerneldoc checker gets confused.

Fixes the following W=1 kernel build warning(s):

 sound/soc/codecs/da7210.c:985: warning: Function parameter or member 
'codec_dai' not described in 'da7210_set_dai_pll'
 sound/soc/codecs/da7210.c:985: warning: Function parameter or member 'pll_id' 
not described in 'da7210_set_dai_pll'
 sound/soc/codecs/da7210.c:985: warning: Function parameter or member 'source' 
not described in 'da7210_set_dai_pll'
 sound/soc/codecs/da7210.c:985: warning: Function parameter or member 'fref' 
not described in 'da7210_set_dai_pll'
 sound/soc/codecs/da7210.c:985: warning: Function parameter or member 'fout' 
not described in 'da7210_set_dai_pll'

Cc: Support Opensource <[email protected]>
Cc: David Chen <[email protected]>
Cc: Kuninori Morimoto <[email protected]>
Signed-off-by: Lee Jones <[email protected]>
---
 sound/soc/codecs/da7210.c | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/sound/soc/codecs/da7210.c b/sound/soc/codecs/da7210.c
index 0c99dcf242e42..159b5f0eb7100 100644
--- a/sound/soc/codecs/da7210.c
+++ b/sound/soc/codecs/da7210.c
@@ -971,11 +971,13 @@ static int da7210_set_dai_sysclk(struct snd_soc_dai 
*codec_dai,
 
 /**
  * da7210_set_dai_pll  :Configure the codec PLL
- * @param codec_dai    : pointer to codec DAI
- * @param pll_id       : da7210 has only one pll, so pll_id is always zero
- * @param fref         : MCLK frequency, should be < 20MHz
- * @param fout         : FsDM value, Refer page 44 & 45 of datasheet
- * @return int         : Zero for success, negative error code for error
+ * @codec_dai: pointer to codec DAI
+ * @pll_id:    da7210 has only one pll, so pll_id is always zero
+ * @source:    unused
+ * @fref:      MCLK frequency, should be < 20MHz
+ * @fout:      FsDM value, Refer page 44 & 45 of datasheet
+ *
+ * Returns: Zero for success, negative error code for error
  *
  * Note: Supported PLL input frequencies are 12MHz, 13MHz, 13.5MHz, 14.4MHz,
  *       19.2MHz, 19.6MHz and 19.8MHz
-- 
2.25.1

Reply via email to