mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-25 21:54:06 +08:00
ASoC: lowland: 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> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
39ec5109d6
commit
f97e0eacf2
@ -56,16 +56,10 @@ static int lowland_wm5100_init(struct snd_soc_pcm_runtime *rtd)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = snd_soc_jack_new(codec, "Headset",
|
ret = snd_soc_card_jack_new(rtd->card, "Headset", SND_JACK_LINEOUT |
|
||||||
SND_JACK_LINEOUT | SND_JACK_HEADSET |
|
SND_JACK_HEADSET | SND_JACK_BTN_0,
|
||||||
SND_JACK_BTN_0,
|
&lowland_headset, lowland_headset_pins,
|
||||||
&lowland_headset);
|
ARRAY_SIZE(lowland_headset_pins));
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
ret = snd_soc_jack_add_pins(&lowland_headset,
|
|
||||||
ARRAY_SIZE(lowland_headset_pins),
|
|
||||||
lowland_headset_pins);
|
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user