diff options
author | Colton Lewis <colton.w.lewis@protonmail.com> | 2020-06-26 08:40:24 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-06-26 16:43:47 +0300 |
commit | b6d6e9ea8fb9d477f07e6e4ad8b8a38a47f6870e (patch) | |
tree | ccb207d30a15e45a445e10389c76c4dbbb86c2d5 | |
parent | 72ac4a4bef48e67bb26bc5a01d68c8163def013d (diff) | |
download | linux-b6d6e9ea8fb9d477f07e6e4ad8b8a38a47f6870e.tar.xz |
snd/soc: correct trivial kernel-doc inconsistency
Silence documentation build warning by correcting kernel-doc comment
for snd_soc_runtime_action.
./sound/soc/soc-pcm.c:220: warning: Function parameter or member 'action' not described in 'snd_soc_runtime_action'
Signed-off-by: Colton Lewis <colton.w.lewis@protonmail.com>
Link: https://lore.kernel.org/r/20200626053953.68797-1-colton.w.lewis@protonmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/soc-pcm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c index 6dc21b6693bd..f2c7c85ad40c 100644 --- a/sound/soc/soc-pcm.c +++ b/sound/soc/soc-pcm.c @@ -208,6 +208,7 @@ static inline void dpcm_remove_debugfs_state(struct snd_soc_dpcm *dpcm) * PCM runtime components * @rtd: ASoC PCM runtime that is activated * @stream: Direction of the PCM stream + * @action: Activate stream if 1. Deactivate if -1. * * Increments/Decrements the active count for all the DAIs and components * attached to a PCM runtime. |