Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1734249 > unrolled thread

[PATCH] ASoC: Intel: Skylake: Fix jack name format substitution

Started byChintan Patel <chintan.m.patel@intel.com>
First post2017-09-18 17:50 +0200
Last post2017-09-18 17:50 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH] ASoC: Intel: Skylake: Fix jack name format substitution Chintan Patel <chintan.m.patel@intel.com> - 2017-09-18 17:50 +0200

#1734249 — [PATCH] ASoC: Intel: Skylake: Fix jack name format substitution

FromChintan Patel <chintan.m.patel@intel.com>
Date2017-09-18 17:50 +0200
Subject[PATCH] ASoC: Intel: Skylake: Fix jack name format substitution
Message-ID<ur6t4-88P-25@gated-at.bofh.it>
Jack name is not getting formatted correctly hence resulting
in invalid name for HDMI/DP input devices.

This was recently exposed due changes brought by MST:
commit 3a13347f05fd ("ASoC: Intel: kbl: Add jack port initialize
in kbl machine drivers")

Signed-off-by: Chintan Patel <chintan.m.patel@intel.com>
---
 sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c b/sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c
index 4689991bcc86..c127b7b0ee3f 100644
--- a/sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c
+++ b/sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c
@@ -611,6 +611,8 @@ static int kabylake_card_late_probe(struct snd_soc_card *card)
 
 	list_for_each_entry(pcm, &ctx->hdmi_pcm_list, head) {
 		codec = pcm->codec_dai->codec;
+		snprintf(jack_name, sizeof(jack_name),
+			"HDMI/DP, pcm=%d Jack", pcm->device);
 		err = snd_soc_card_jack_new(card, jack_name,
 				SND_JACK_AVOUT, &ctx->kabylake_hdmi[i],
 				NULL, 0);
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web