All of lore.kernel.org
 help / color / mirror / Atom feed
* Fwd: [PATCH] snd/soc: correct trivial kernel-doc inconsistency
@ 2020-06-21  2:09 Colton Lewis
  2020-06-24 15:20 ` Pierre-Louis Bossart
  0 siblings, 1 reply; 5+ messages in thread
From: Colton Lewis @ 2020-06-21  2:09 UTC (permalink / raw)
  To: alsa-devel; +Cc: lgirdwood

Can some please accept or comment on this patch?

----------  Forwarded Message  ----------

Subject: [PATCH] snd/soc: correct trivial kernel-doc inconsistency
Date: Saturday, June 13, 2020, 9:29:08 PM CDT
From: Colton Lewis <colton.w.lewis@protonmail.com>
To: lgirdwood@gmail.com
CC: trivial@kernel.org, Colton Lewis <colton.w.lewis@protonmail.com>



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>
---
 sound/soc/soc-pcm.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c
index 2c114b4542ce..9ab376844ac1 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.
-- 
2.26.2


-----------------------------------------




^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: Fwd: [PATCH] snd/soc: correct trivial kernel-doc inconsistency
  2020-06-21  2:09 Fwd: [PATCH] snd/soc: correct trivial kernel-doc inconsistency Colton Lewis
@ 2020-06-24 15:20 ` Pierre-Louis Bossart
  2020-06-26  5:40   ` Colton Lewis
  0 siblings, 1 reply; 5+ messages in thread
From: Pierre-Louis Bossart @ 2020-06-24 15:20 UTC (permalink / raw)
  To: Colton Lewis, alsa-devel; +Cc: Takashi Iwai, Mark Brown, lgirdwood



On 6/20/20 9:09 PM, Colton Lewis wrote:
> Can some please accept or comment on this patch?

It's a valid fix, I added the same change in the SOF tree yesterday but 
you beat me to it.

Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>

You probably want to resend and CC: Takashi and Mark.

> 
> ----------  Forwarded Message  ----------
> 
> Subject: [PATCH] snd/soc: correct trivial kernel-doc inconsistency
> Date: Saturday, June 13, 2020, 9:29:08 PM CDT
> From: Colton Lewis <colton.w.lewis@protonmail.com>
> To: lgirdwood@gmail.com
> CC: trivial@kernel.org, Colton Lewis <colton.w.lewis@protonmail.com>
> 
> 
> 
> 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>
> ---
>   sound/soc/soc-pcm.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c
> index 2c114b4542ce..9ab376844ac1 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.
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] snd/soc: correct trivial kernel-doc inconsistency
  2020-06-24 15:20 ` Pierre-Louis Bossart
@ 2020-06-26  5:40   ` Colton Lewis
  2020-06-26 14:35     ` Pierre-Louis Bossart
  2020-06-26 15:16     ` Mark Brown
  0 siblings, 2 replies; 5+ messages in thread
From: Colton Lewis @ 2020-06-26  5:40 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, Colton Lewis, broonie, lgirwood, pierre-louis.bossart

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>
---
 sound/soc/soc-pcm.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c
index 2c114b4542ce..9ab376844ac1 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.
-- 
2.26.2



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] snd/soc: correct trivial kernel-doc inconsistency
  2020-06-26  5:40   ` Colton Lewis
@ 2020-06-26 14:35     ` Pierre-Louis Bossart
  2020-06-26 15:16     ` Mark Brown
  1 sibling, 0 replies; 5+ messages in thread
From: Pierre-Louis Bossart @ 2020-06-26 14:35 UTC (permalink / raw)
  To: Colton Lewis, alsa-devel; +Cc: tiwai, broonie, lgirwood



On 6/26/20 12:40 AM, Colton Lewis wrote:
> 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>

Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>

> ---
>   sound/soc/soc-pcm.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c
> index 2c114b4542ce..9ab376844ac1 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.
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] snd/soc: correct trivial kernel-doc inconsistency
  2020-06-26  5:40   ` Colton Lewis
  2020-06-26 14:35     ` Pierre-Louis Bossart
@ 2020-06-26 15:16     ` Mark Brown
  1 sibling, 0 replies; 5+ messages in thread
From: Mark Brown @ 2020-06-26 15:16 UTC (permalink / raw)
  To: Colton Lewis, alsa-devel; +Cc: tiwai, lgirwood, pierre-louis.bossart

On Fri, 26 Jun 2020 05:40:24 +0000, Colton Lewis wrote:
> 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'

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/1] snd/soc: correct trivial kernel-doc inconsistency
      commit: b6d6e9ea8fb9d477f07e6e4ad8b8a38a47f6870e

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-06-26 15:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-21  2:09 Fwd: [PATCH] snd/soc: correct trivial kernel-doc inconsistency Colton Lewis
2020-06-24 15:20 ` Pierre-Louis Bossart
2020-06-26  5:40   ` Colton Lewis
2020-06-26 14:35     ` Pierre-Louis Bossart
2020-06-26 15:16     ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.