ASoC: omap-abe-twl6040: Register jacks at the card level
The jacks are card level elements so use snd_soc_card_jack_new() instead of snd_soc_jack_new() to register them. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
df8c66189d
commit
25649592cf
1 changed files with 5 additions and 5 deletions
|
@ -182,17 +182,17 @@ static int omap_abe_twl6040_init(struct snd_soc_pcm_runtime *rtd)
|
||||||
|
|
||||||
/* Headset jack detection only if it is supported */
|
/* Headset jack detection only if it is supported */
|
||||||
if (priv->jack_detection) {
|
if (priv->jack_detection) {
|
||||||
ret = snd_soc_jack_new(codec, "Headset Jack",
|
ret = snd_soc_card_jack_new(rtd->card, "Headset Jack",
|
||||||
SND_JACK_HEADSET, &hs_jack);
|
SND_JACK_HEADSET, &hs_jack,
|
||||||
|
hs_jack_pins,
|
||||||
|
ARRAY_SIZE(hs_jack_pins));
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
ret = snd_soc_jack_add_pins(&hs_jack, ARRAY_SIZE(hs_jack_pins),
|
|
||||||
hs_jack_pins);
|
|
||||||
twl6040_hs_jack_detect(codec, &hs_jack, SND_JACK_HEADSET);
|
twl6040_hs_jack_detect(codec, &hs_jack, SND_JACK_HEADSET);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct snd_soc_dapm_route dmic_audio_map[] = {
|
static const struct snd_soc_dapm_route dmic_audio_map[] = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue