All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: Intel: hda_dsp_common: don't multiline PCM topology warning
@ 2021-11-28 14:31 Chris Down
  2021-11-29 16:27 ` Pierre-Louis Bossart
  2021-12-01 18:32 ` Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Chris Down @ 2021-11-28 14:31 UTC (permalink / raw)
  To: alsa-devel
  Cc: tiwai, Guennadi Liakhovetski, broonie, Pierre-Louis Bossart,
	Kai Vehmanen

On my T14s Gen2 I saw the following:

    [   16.057258] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 3

    [   16.057261] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 4

    [   16.057263] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 5

    [...and so on.]

It looks like the double newline is a mistake, so remove one.

Signed-off-by: Chris Down <chris@chrisdown.name>
---
 sound/soc/intel/boards/hda_dsp_common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/intel/boards/hda_dsp_common.c b/sound/soc/intel/boards/hda_dsp_common.c
index efdc4bc4bb1f..5c31ddc0884a 100644
--- a/sound/soc/intel/boards/hda_dsp_common.c
+++ b/sound/soc/intel/boards/hda_dsp_common.c
@@ -68,7 +68,7 @@ int hda_dsp_hdmi_build_controls(struct snd_soc_card *card,
 			hpcm->pcm = NULL;
 			hpcm->device = SNDRV_PCM_INVALID_DEVICE;
 			dev_warn(card->dev,
-				 "%s: no PCM in topology for HDMI converter %d\n\n",
+				 "%s: no PCM in topology for HDMI converter %d\n",
 				 __func__, i);
 		}
 		i++;
-- 
2.34.1


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

* Re: [PATCH] ASoC: Intel: hda_dsp_common: don't multiline PCM topology warning
  2021-11-28 14:31 [PATCH] ASoC: Intel: hda_dsp_common: don't multiline PCM topology warning Chris Down
@ 2021-11-29 16:27 ` Pierre-Louis Bossart
  2021-12-01 18:32 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Pierre-Louis Bossart @ 2021-11-29 16:27 UTC (permalink / raw)
  To: Chris Down, alsa-devel
  Cc: tiwai, Guennadi Liakhovetski, broonie, Kai Vehmanen



On 11/28/21 8:31 AM, Chris Down wrote:
> On my T14s Gen2 I saw the following:
> 
>     [   16.057258] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 3
> 
>     [   16.057261] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 4
> 
>     [   16.057263] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 5
> 
>     [...and so on.]
> 
> It looks like the double newline is a mistake, so remove one.
> 
> Signed-off-by: Chris Down <chris@chrisdown.name>

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


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

* Re: [PATCH] ASoC: Intel: hda_dsp_common: don't multiline PCM topology warning
  2021-11-28 14:31 [PATCH] ASoC: Intel: hda_dsp_common: don't multiline PCM topology warning Chris Down
  2021-11-29 16:27 ` Pierre-Louis Bossart
@ 2021-12-01 18:32 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2021-12-01 18:32 UTC (permalink / raw)
  To: Chris Down, alsa-devel
  Cc: tiwai, Guennadi Liakhovetski, Pierre-Louis Bossart, Kai Vehmanen

On Sun, 28 Nov 2021 14:31:46 +0000, Chris Down wrote:
> On my T14s Gen2 I saw the following:
> 
>     [   16.057258] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 3
> 
>     [   16.057261] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 4
> 
>     [   16.057263] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 5
> 
> [...]

Applied to

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

Thanks!

[1/1] ASoC: Intel: hda_dsp_common: don't multiline PCM topology warning
      commit: 11918cdcffb127b6b35fe5c438e2ca8aa78249d0

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

end of thread, other threads:[~2021-12-01 18:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-28 14:31 [PATCH] ASoC: Intel: hda_dsp_common: don't multiline PCM topology warning Chris Down
2021-11-29 16:27 ` Pierre-Louis Bossart
2021-12-01 18:32 ` 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.