forked from Minki/linux
ASoC: omap-twl4030: 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
25649592cf
commit
da21cf6d65
@ -170,14 +170,10 @@ static int omap_twl4030_init(struct snd_soc_pcm_runtime *rtd)
|
|||||||
if (priv->jack_detect > 0) {
|
if (priv->jack_detect > 0) {
|
||||||
hs_jack_gpios[0].gpio = priv->jack_detect;
|
hs_jack_gpios[0].gpio = priv->jack_detect;
|
||||||
|
|
||||||
ret = snd_soc_jack_new(codec, "Headset Jack", SND_JACK_HEADSET,
|
ret = snd_soc_card_jack_new(rtd->card, "Headset Jack",
|
||||||
&priv->hs_jack);
|
SND_JACK_HEADSET, &priv->hs_jack,
|
||||||
if (ret)
|
hs_jack_pins,
|
||||||
return ret;
|
ARRAY_SIZE(hs_jack_pins));
|
||||||
|
|
||||||
ret = snd_soc_jack_add_pins(&priv->hs_jack,
|
|
||||||
ARRAY_SIZE(hs_jack_pins),
|
|
||||||
hs_jack_pins);
|
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user