alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/9] ASoC: remove more make W=1 warnings
@ 2021-03-02 20:59 Pierre-Louis Bossart
  2021-03-02 20:59 ` [PATCH 1/9] ASoC: cs4270: fix kernel-doc Pierre-Louis Bossart
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Pierre-Louis Bossart @ 2021-03-02 20:59 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, broonie, Pierre-Louis Bossart

These warnings get in the way of automation/CI, let's remove them.

Pierre-Louis Bossart (9):
  ASoC: cs4270: fix kernel-doc
  ASoC: jz4760: fix set but not used warning
  ASoC: rt5631: fix kernel-doc warning
  ASoC: sigmadsp-regmap: fix kernel-doc warning
  ASoC: amd: renoir: remove invalid kernel-doc comment
  ASoC: fsl: fsl_ssi: fix kernel-doc warning
  ASoC: fsl: fsl_easrc: fix kernel-doc warning
  ASoC: Intel: bytcr_wm5102: remove unused static variable
  ASoC: qcom: q6dsp: fix kernel-doc warning

 sound/soc/amd/renoir/rn-pci-acp3x.c   | 2 +-
 sound/soc/codecs/cs4270.c             | 1 +
 sound/soc/codecs/jz4760.c             | 4 ++--
 sound/soc/codecs/rt5631.c             | 2 +-
 sound/soc/codecs/sigmadsp-regmap.c    | 2 +-
 sound/soc/fsl/fsl_easrc.c             | 2 +-
 sound/soc/fsl/fsl_ssi.c               | 2 +-
 sound/soc/intel/boards/bytcr_wm5102.c | 8 --------
 sound/soc/qcom/qdsp6/q6afe.c          | 2 +-
 9 files changed, 9 insertions(+), 16 deletions(-)

-- 
2.25.1


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

* [PATCH 1/9] ASoC: cs4270: fix kernel-doc
  2021-03-02 20:59 [PATCH 0/9] ASoC: remove more make W=1 warnings Pierre-Louis Bossart
@ 2021-03-02 20:59 ` Pierre-Louis Bossart
  2021-03-02 20:59 ` [PATCH 2/9] ASoC: jz4760: fix set but not used warning Pierre-Louis Bossart
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Pierre-Louis Bossart @ 2021-03-02 20:59 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, broonie, Pierre-Louis Bossart

Add missing parameter (which happens to be ignored)

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
---
 sound/soc/codecs/cs4270.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/codecs/cs4270.c b/sound/soc/codecs/cs4270.c
index ddd95c8269ed..2d239e983a83 100644
--- a/sound/soc/codecs/cs4270.c
+++ b/sound/soc/codecs/cs4270.c
@@ -400,6 +400,7 @@ static int cs4270_hw_params(struct snd_pcm_substream *substream,
  * cs4270_dai_mute - enable/disable the CS4270 external mute
  * @dai: the SOC DAI
  * @mute: 0 = disable mute, 1 = enable mute
+ * @direction: (ignored)
  *
  * This function toggles the mute bits in the MUTE register.  The CS4270's
  * mute capability is intended for external muting circuitry, so if the
-- 
2.25.1


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

* [PATCH 2/9] ASoC: jz4760: fix set but not used warning
  2021-03-02 20:59 [PATCH 0/9] ASoC: remove more make W=1 warnings Pierre-Louis Bossart
  2021-03-02 20:59 ` [PATCH 1/9] ASoC: cs4270: fix kernel-doc Pierre-Louis Bossart
@ 2021-03-02 20:59 ` Pierre-Louis Bossart
  2021-03-02 20:59 ` [PATCH 3/9] ASoC: rt5631: fix kernel-doc warning Pierre-Louis Bossart
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Pierre-Louis Bossart @ 2021-03-02 20:59 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, broonie, Pierre-Louis Bossart

make W=1 warning:

sound/soc/codecs/jz4760.c: In function ‘jz4760_codec_startup’:
sound/soc/codecs/jz4760.c:201:6: error: variable ‘ret’ set but not
used [-Werror=unused-but-set-variable]
  201 |  int ret;
      |      ^~~

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
---
 sound/soc/codecs/jz4760.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/codecs/jz4760.c b/sound/soc/codecs/jz4760.c
index e8f28ccc145a..f62abf5ad917 100644
--- a/sound/soc/codecs/jz4760.c
+++ b/sound/soc/codecs/jz4760.c
@@ -198,7 +198,7 @@ static int jz4760_codec_startup(struct snd_pcm_substream *substream,
 {
 	struct snd_soc_component *codec = dai->component;
 	struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(codec);
-	int ret;
+	int ret = 0;
 
 	/*
 	 * SYSCLK output from the codec to the AIC is required to keep the
@@ -207,7 +207,7 @@ static int jz4760_codec_startup(struct snd_pcm_substream *substream,
 	 */
 	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
 		ret = snd_soc_dapm_force_enable_pin(dapm, "SYSCLK");
-	return 0;
+	return ret;
 }
 
 static void jz4760_codec_shutdown(struct snd_pcm_substream *substream,
-- 
2.25.1


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

* [PATCH 3/9] ASoC: rt5631: fix kernel-doc warning
  2021-03-02 20:59 [PATCH 0/9] ASoC: remove more make W=1 warnings Pierre-Louis Bossart
  2021-03-02 20:59 ` [PATCH 1/9] ASoC: cs4270: fix kernel-doc Pierre-Louis Bossart
  2021-03-02 20:59 ` [PATCH 2/9] ASoC: jz4760: fix set but not used warning Pierre-Louis Bossart
@ 2021-03-02 20:59 ` Pierre-Louis Bossart
  2021-03-02 20:59 ` [PATCH 4/9] ASoC: sigmadsp-regmap: " Pierre-Louis Bossart
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Pierre-Louis Bossart @ 2021-03-02 20:59 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, broonie, Pierre-Louis Bossart

make W=1 warning:

sound/soc/codecs/rt5631.c:446: warning: expecting prototype for
onebit_depop_power_stage(). Prototype was for depop_seq_power_stage()
instead

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
---
 sound/soc/codecs/rt5631.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/rt5631.c b/sound/soc/codecs/rt5631.c
index afc1305a7fa5..3000bc128b5b 100644
--- a/sound/soc/codecs/rt5631.c
+++ b/sound/soc/codecs/rt5631.c
@@ -436,7 +436,7 @@ static void onebit_depop_mute_stage(struct snd_soc_component *component, int ena
 }
 
 /**
- * onebit_depop_power_stage - step by step depop sequence in power stage.
+ * depop_seq_power_stage - step by step depop sequence in power stage.
  * @component: ASoC component
  * @enable: power on/off
  *
-- 
2.25.1


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

* [PATCH 4/9] ASoC: sigmadsp-regmap: fix kernel-doc warning
  2021-03-02 20:59 [PATCH 0/9] ASoC: remove more make W=1 warnings Pierre-Louis Bossart
                   ` (2 preceding siblings ...)
  2021-03-02 20:59 ` [PATCH 3/9] ASoC: rt5631: fix kernel-doc warning Pierre-Louis Bossart
@ 2021-03-02 20:59 ` Pierre-Louis Bossart
  2021-03-02 20:59 ` [PATCH 5/9] ASoC: amd: renoir: remove invalid kernel-doc comment Pierre-Louis Bossart
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Pierre-Louis Bossart @ 2021-03-02 20:59 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, broonie, Pierre-Louis Bossart

make W=1 warning:

sound/soc/codecs/sigmadsp-regmap.c:42: warning: expecting prototype
for devm_sigmadsp_init_i2c(). Prototype was for
devm_sigmadsp_init_regmap() instead

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
---
 sound/soc/codecs/sigmadsp-regmap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/sigmadsp-regmap.c b/sound/soc/codecs/sigmadsp-regmap.c
index bf1c4086da9f..ba9a6795e470 100644
--- a/sound/soc/codecs/sigmadsp-regmap.c
+++ b/sound/soc/codecs/sigmadsp-regmap.c
@@ -26,7 +26,7 @@ static int sigmadsp_read_regmap(void *control_data,
 }
 
 /**
- * devm_sigmadsp_init_i2c() - Initialize SigmaDSP instance
+ * devm_sigmadsp_init_regmap() - Initialize SigmaDSP instance
  * @dev: The parent device
  * @regmap: Regmap instance to use
  * @ops: The sigmadsp_ops to use for this instance
-- 
2.25.1


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

* [PATCH 5/9] ASoC: amd: renoir: remove invalid kernel-doc comment
  2021-03-02 20:59 [PATCH 0/9] ASoC: remove more make W=1 warnings Pierre-Louis Bossart
                   ` (3 preceding siblings ...)
  2021-03-02 20:59 ` [PATCH 4/9] ASoC: sigmadsp-regmap: " Pierre-Louis Bossart
@ 2021-03-02 20:59 ` Pierre-Louis Bossart
  2021-03-02 20:59 ` [PATCH 6/9] ASoC: fsl: fsl_ssi: fix kernel-doc warning Pierre-Louis Bossart
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Pierre-Louis Bossart @ 2021-03-02 20:59 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, broonie, Pierre-Louis Bossart

make W=1 warning:

sound/soc/amd/renoir/rn-pci-acp3x.c:24: warning: wrong kernel-doc
identifier on line:
 * dmic_acpi_check = -1 - Use ACPI/DMI method to detect the DMIC
   hardware presence at runtime

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
---
 sound/soc/amd/renoir/rn-pci-acp3x.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/amd/renoir/rn-pci-acp3x.c b/sound/soc/amd/renoir/rn-pci-acp3x.c
index 050a61fe9693..19438da5dfa5 100644
--- a/sound/soc/amd/renoir/rn-pci-acp3x.c
+++ b/sound/soc/amd/renoir/rn-pci-acp3x.c
@@ -20,7 +20,7 @@ static int acp_power_gating;
 module_param(acp_power_gating, int, 0644);
 MODULE_PARM_DESC(acp_power_gating, "Enable acp power gating");
 
-/**
+/*
  * dmic_acpi_check = -1 - Use ACPI/DMI method to detect the DMIC hardware presence at runtime
  *                 =  0 - Skip the DMIC device creation and return probe failure
  *                 =  1 - Force DMIC support
-- 
2.25.1


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

* [PATCH 6/9] ASoC: fsl: fsl_ssi: fix kernel-doc warning
  2021-03-02 20:59 [PATCH 0/9] ASoC: remove more make W=1 warnings Pierre-Louis Bossart
                   ` (4 preceding siblings ...)
  2021-03-02 20:59 ` [PATCH 5/9] ASoC: amd: renoir: remove invalid kernel-doc comment Pierre-Louis Bossart
@ 2021-03-02 20:59 ` Pierre-Louis Bossart
  2021-03-02 20:59 ` [PATCH 7/9] ASoC: fsl: fsl_easrc: " Pierre-Louis Bossart
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Pierre-Louis Bossart @ 2021-03-02 20:59 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, broonie, Pierre-Louis Bossart

make W=1 warning:

sound/soc/fsl/fsl_ssi.c:371: warning: expecting prototype for
fsl_ssi_irq(). Prototype was for fsl_ssi_isr() instead

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
---
 sound/soc/fsl/fsl_ssi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c
index 4e2ce47a7c6e..2b57b60431bb 100644
--- a/sound/soc/fsl/fsl_ssi.c
+++ b/sound/soc/fsl/fsl_ssi.c
@@ -363,7 +363,7 @@ static bool fsl_ssi_is_i2s_cbm_cfs(struct fsl_ssi *ssi)
 }
 
 /**
- * fsl_ssi_irq - Interrupt handler to gather states
+ * fsl_ssi_isr - Interrupt handler to gather states
  * @irq: irq number
  * @dev_id: context
  */
-- 
2.25.1


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

* [PATCH 7/9] ASoC: fsl: fsl_easrc: fix kernel-doc warning
  2021-03-02 20:59 [PATCH 0/9] ASoC: remove more make W=1 warnings Pierre-Louis Bossart
                   ` (5 preceding siblings ...)
  2021-03-02 20:59 ` [PATCH 6/9] ASoC: fsl: fsl_ssi: fix kernel-doc warning Pierre-Louis Bossart
@ 2021-03-02 20:59 ` Pierre-Louis Bossart
  2021-03-02 20:59 ` [PATCH 8/9] ASoC: Intel: bytcr_wm5102: remove unused static variable Pierre-Louis Bossart
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Pierre-Louis Bossart @ 2021-03-02 20:59 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, broonie, Pierre-Louis Bossart

make W=1 warning:

sound/soc/fsl/fsl_easrc.c:383: warning: wrong kernel-doc identifier on
line:
 *  Scale filter coefficients (64 bits float)

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
---
 sound/soc/fsl/fsl_easrc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/fsl/fsl_easrc.c b/sound/soc/fsl/fsl_easrc.c
index 725a5d3aaa02..60f9c0bad3e8 100644
--- a/sound/soc/fsl/fsl_easrc.c
+++ b/sound/soc/fsl/fsl_easrc.c
@@ -380,7 +380,7 @@ static int fsl_easrc_resampler_config(struct fsl_asrc *easrc)
 }
 
 /**
- *  Scale filter coefficients (64 bits float)
+ *  fsl_easrc_normalize_filter - Scale filter coefficients (64 bits float)
  *  For input float32 normalized range (1.0,-1.0) -> output int[16,24,32]:
  *      scale it by multiplying filter coefficients by 2^31
  *  For input int[16, 24, 32] -> output float32
-- 
2.25.1


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

* [PATCH 8/9] ASoC: Intel: bytcr_wm5102: remove unused static variable
  2021-03-02 20:59 [PATCH 0/9] ASoC: remove more make W=1 warnings Pierre-Louis Bossart
                   ` (6 preceding siblings ...)
  2021-03-02 20:59 ` [PATCH 7/9] ASoC: fsl: fsl_easrc: " Pierre-Louis Bossart
@ 2021-03-02 20:59 ` Pierre-Louis Bossart
  2021-03-02 20:59 ` [PATCH 9/9] ASoC: qcom: q6dsp: fix kernel-doc warning Pierre-Louis Bossart
  2021-03-04  0:54 ` [PATCH 0/9] ASoC: remove more make W=1 warnings Mark Brown
  9 siblings, 0 replies; 11+ messages in thread
From: Pierre-Louis Bossart @ 2021-03-02 20:59 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, broonie, Pierre-Louis Bossart

make W=1 warning:

sound/soc/intel/boards/bytcr_wm5102.c:216:40: error:
‘byt_wm5102_dai_params’ defined but not used
[-Werror=unused-const-variable=]
  216 | static const struct snd_soc_pcm_stream byt_wm5102_dai_params = {
      |                                        ^~~~~~~~~~~~~~~~~~~~~

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
---
 sound/soc/intel/boards/bytcr_wm5102.c | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/sound/soc/intel/boards/bytcr_wm5102.c b/sound/soc/intel/boards/bytcr_wm5102.c
index f38850eb2eaf..fd584e380340 100644
--- a/sound/soc/intel/boards/bytcr_wm5102.c
+++ b/sound/soc/intel/boards/bytcr_wm5102.c
@@ -213,14 +213,6 @@ static int byt_wm5102_init(struct snd_soc_pcm_runtime *runtime)
 	return 0;
 }
 
-static const struct snd_soc_pcm_stream byt_wm5102_dai_params = {
-	.formats = SNDRV_PCM_FMTBIT_S16_LE,
-	.rate_min = 48000,
-	.rate_max = 48000,
-	.channels_min = 2,
-	.channels_max = 2,
-};
-
 static int byt_wm5102_codec_fixup(struct snd_soc_pcm_runtime *rtd,
 				  struct snd_pcm_hw_params *params)
 {
-- 
2.25.1


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

* [PATCH 9/9] ASoC: qcom: q6dsp: fix kernel-doc warning
  2021-03-02 20:59 [PATCH 0/9] ASoC: remove more make W=1 warnings Pierre-Louis Bossart
                   ` (7 preceding siblings ...)
  2021-03-02 20:59 ` [PATCH 8/9] ASoC: Intel: bytcr_wm5102: remove unused static variable Pierre-Louis Bossart
@ 2021-03-02 20:59 ` Pierre-Louis Bossart
  2021-03-04  0:54 ` [PATCH 0/9] ASoC: remove more make W=1 warnings Mark Brown
  9 siblings, 0 replies; 11+ messages in thread
From: Pierre-Louis Bossart @ 2021-03-02 20:59 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, broonie, Pierre-Louis Bossart

make W=1 warning:

sound/soc/qcom/qdsp6/q6afe.c:1460: warning: expecting prototype for
q6afe_dam_port_prepare(). Prototype was for
q6afe_cdc_dma_port_prepare() instead

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
---
 sound/soc/qcom/qdsp6/q6afe.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/qcom/qdsp6/q6afe.c b/sound/soc/qcom/qdsp6/q6afe.c
index 6f700c311337..38f6042fe893 100644
--- a/sound/soc/qcom/qdsp6/q6afe.c
+++ b/sound/soc/qcom/qdsp6/q6afe.c
@@ -1448,7 +1448,7 @@ int q6afe_i2s_port_prepare(struct q6afe_port *port, struct q6afe_i2s_cfg *cfg)
 EXPORT_SYMBOL_GPL(q6afe_i2s_port_prepare);
 
 /**
- * q6afe_dam_port_prepare() - Prepare dma afe port.
+ * q6afe_cdc_dma_port_prepare() - Prepare dma afe port.
  *
  * @port: Instance of afe port
  * @cfg: DMA configuration for the afe port
-- 
2.25.1


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

* Re: [PATCH 0/9] ASoC: remove more make W=1 warnings
  2021-03-02 20:59 [PATCH 0/9] ASoC: remove more make W=1 warnings Pierre-Louis Bossart
                   ` (8 preceding siblings ...)
  2021-03-02 20:59 ` [PATCH 9/9] ASoC: qcom: q6dsp: fix kernel-doc warning Pierre-Louis Bossart
@ 2021-03-04  0:54 ` Mark Brown
  9 siblings, 0 replies; 11+ messages in thread
From: Mark Brown @ 2021-03-04  0:54 UTC (permalink / raw)
  To: Pierre-Louis Bossart, alsa-devel; +Cc: tiwai

On Tue, 2 Mar 2021 14:59:17 -0600, Pierre-Louis Bossart wrote:
> These warnings get in the way of automation/CI, let's remove them.
> 
> Pierre-Louis Bossart (9):
>   ASoC: cs4270: fix kernel-doc
>   ASoC: jz4760: fix set but not used warning
>   ASoC: rt5631: fix kernel-doc warning
>   ASoC: sigmadsp-regmap: fix kernel-doc warning
>   ASoC: amd: renoir: remove invalid kernel-doc comment
>   ASoC: fsl: fsl_ssi: fix kernel-doc warning
>   ASoC: fsl: fsl_easrc: fix kernel-doc warning
>   ASoC: Intel: bytcr_wm5102: remove unused static variable
>   ASoC: qcom: q6dsp: fix kernel-doc warning
> 
> [...]

Applied to

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

Thanks!

[1/9] ASoC: cs4270: fix kernel-doc
      commit: 8133968501b6d839a3621d553c212b9f3cc1b6ca
[2/9] ASoC: jz4760: fix set but not used warning
      commit: af54170f0c1ba84989e0975b6f67e758b472d00c
[3/9] ASoC: rt5631: fix kernel-doc warning
      commit: 952b3b9f90a2004b14a90d1fe303600dc8c6a98c
[4/9] ASoC: sigmadsp-regmap: fix kernel-doc warning
      commit: de233813778ed0eb8fc8ce03624bcffb29e04564
[5/9] ASoC: amd: renoir: remove invalid kernel-doc comment
      commit: 101d1e201fa1d8fd96f7da7a48288c95e2bae6d7
[6/9] ASoC: fsl: fsl_ssi: fix kernel-doc warning
      commit: 0c6fbbe5ffd1ff233a84e6e8fbc95f4e6deb6b24
[7/9] ASoC: fsl: fsl_easrc: fix kernel-doc warning
      commit: a45c305bbee30506d3bd068b40f6eb8699a88e54
[8/9] ASoC: Intel: bytcr_wm5102: remove unused static variable
      commit: ff321d72e7f31e96f92b36f02883fc0a27eb0a9f
[9/9] ASoC: qcom: q6dsp: fix kernel-doc warning
      commit: 098acd30d38bd8f5e3aa2544a4bc72942bf8b27e

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] 11+ messages in thread

end of thread, other threads:[~2021-03-04  0:56 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-02 20:59 [PATCH 0/9] ASoC: remove more make W=1 warnings Pierre-Louis Bossart
2021-03-02 20:59 ` [PATCH 1/9] ASoC: cs4270: fix kernel-doc Pierre-Louis Bossart
2021-03-02 20:59 ` [PATCH 2/9] ASoC: jz4760: fix set but not used warning Pierre-Louis Bossart
2021-03-02 20:59 ` [PATCH 3/9] ASoC: rt5631: fix kernel-doc warning Pierre-Louis Bossart
2021-03-02 20:59 ` [PATCH 4/9] ASoC: sigmadsp-regmap: " Pierre-Louis Bossart
2021-03-02 20:59 ` [PATCH 5/9] ASoC: amd: renoir: remove invalid kernel-doc comment Pierre-Louis Bossart
2021-03-02 20:59 ` [PATCH 6/9] ASoC: fsl: fsl_ssi: fix kernel-doc warning Pierre-Louis Bossart
2021-03-02 20:59 ` [PATCH 7/9] ASoC: fsl: fsl_easrc: " Pierre-Louis Bossart
2021-03-02 20:59 ` [PATCH 8/9] ASoC: Intel: bytcr_wm5102: remove unused static variable Pierre-Louis Bossart
2021-03-02 20:59 ` [PATCH 9/9] ASoC: qcom: q6dsp: fix kernel-doc warning Pierre-Louis Bossart
2021-03-04  0:54 ` [PATCH 0/9] ASoC: remove more make W=1 warnings Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).