ASoC: fsl: fsl-asoc-card: fix kernel-doc

Fix W=1 warnings. Kernel-doc syntax was not properly used.

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Acked-by: Nicolin Chen <nicoleotsuka@gmail.com>
Link: https://lore.kernel.org/r/20200702192141.168018-4-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Pierre-Louis Bossart 2020-07-02 14:21:38 -05:00 committed by Mark Brown
parent e3b741918f
commit 31deacffcd
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0
1 changed files with 9 additions and 12 deletions

View File

@ -33,8 +33,7 @@
#define DAI_FMT_BASE (SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF) #define DAI_FMT_BASE (SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF)
/** /**
* CODEC private data * struct codec_priv - CODEC private data
*
* @mclk_freq: Clock rate of MCLK * @mclk_freq: Clock rate of MCLK
* @mclk_id: MCLK (or main clock) id for set_sysclk() * @mclk_id: MCLK (or main clock) id for set_sysclk()
* @fll_id: FLL (or secordary clock) id for set_sysclk() * @fll_id: FLL (or secordary clock) id for set_sysclk()
@ -48,11 +47,10 @@ struct codec_priv {
}; };
/** /**
* CPU private data * struct cpu_priv - CPU private data
* * @sysclk_freq: SYSCLK rates for set_sysclk()
* @sysclk_freq[2]: SYSCLK rates for set_sysclk() * @sysclk_dir: SYSCLK directions for set_sysclk()
* @sysclk_dir[2]: SYSCLK directions for set_sysclk() * @sysclk_id: SYSCLK ids for set_sysclk()
* @sysclk_id[2]: SYSCLK ids for set_sysclk()
* @slot_width: Slot width of each frame * @slot_width: Slot width of each frame
* *
* Note: [1] for tx and [0] for rx * Note: [1] for tx and [0] for rx
@ -65,9 +63,8 @@ struct cpu_priv {
}; };
/** /**
* Freescale Generic ASOC card private data * struct fsl_asoc_card_priv - Freescale Generic ASOC card private data
* * @dai_link: DAI link structure including normal one and DPCM link
* @dai_link[3]: DAI link structure including normal one and DPCM link
* @pdev: platform device pointer * @pdev: platform device pointer
* @codec_priv: CODEC private data * @codec_priv: CODEC private data
* @cpu_priv: CPU private data * @cpu_priv: CPU private data
@ -94,8 +91,8 @@ struct fsl_asoc_card_priv {
char name[32]; char name[32];
}; };
/** /*
* This dapm route map exsits for DPCM link only. * This dapm route map exits for DPCM link only.
* The other routes shall go through Device Tree. * The other routes shall go through Device Tree.
* *
* Note: keep all ASRC routes in the second half * Note: keep all ASRC routes in the second half