mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 18:24:14 +08:00
ASoC: imx-es8328: 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
386669fcec
commit
27cb64b474
@ -53,9 +53,9 @@ static int imx_es8328_dai_init(struct snd_soc_pcm_runtime *rtd)
|
||||
|
||||
/* Headphone jack detection */
|
||||
if (gpio_is_valid(data->jack_gpio)) {
|
||||
ret = snd_soc_jack_new(rtd->codec, "Headphone",
|
||||
ret = snd_soc_card_jack_new(rtd->card, "Headphone",
|
||||
SND_JACK_HEADPHONE | SND_JACK_BTN_0,
|
||||
&headset_jack);
|
||||
&headset_jack, NULL, 0);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user