diff options
author | Jeeja KP <jeeja.kp@intel.com> | 2017-02-07 19:10:00 +0530 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-02-16 18:57:15 +0000 |
commit | c5cf9f37a0fb6e50d68f6dcf58b93b2c47c780a1 (patch) | |
tree | 87cffd43e497cae6c666299e7e0dfd23af9118b5 /sound/soc | |
parent | 86b5703158ff39e5efe9480784a7cad1b4baef59 (diff) | |
download | linux-c5cf9f37a0fb6e50d68f6dcf58b93b2c47c780a1.tar.gz linux-c5cf9f37a0fb6e50d68f6dcf58b93b2c47c780a1.tar.bz2 linux-c5cf9f37a0fb6e50d68f6dcf58b93b2c47c780a1.zip |
ASoC: Intel: bxt: Add jack port initialize in da7219_max98357a machine
After the pcm jack is created, create and initialize the pin switch
widget for each port. Pin switch is to enable/disable the pin when
monitor is connected/disconnected.
Signed-off-by: Jeeja KP <jeeja.kp@intel.com>
Acked-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/intel/boards/bxt_da7219_max98357a.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sound/soc/intel/boards/bxt_da7219_max98357a.c b/sound/soc/intel/boards/bxt_da7219_max98357a.c index 18f3d0e1a6b2..2cda06cde4d1 100644 --- a/sound/soc/intel/boards/bxt_da7219_max98357a.c +++ b/sound/soc/intel/boards/bxt_da7219_max98357a.c @@ -523,10 +523,12 @@ static int bxt_card_late_probe(struct snd_soc_card *card) { struct bxt_card_private *ctx = snd_soc_card_get_drvdata(card); struct bxt_hdmi_pcm *pcm; + struct snd_soc_codec *codec = NULL; int err, i = 0; char jack_name[NAME_SIZE]; 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, @@ -544,7 +546,10 @@ static int bxt_card_late_probe(struct snd_soc_card *card) i++; } - return 0; + if (!codec) + return -EINVAL; + + return hdac_hdmi_jack_port_init(codec, &card->dapm); } /* broxton audio machine driver for SPT + da7219 */ |