Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 51f25e7f authored by Takashi Iwai's avatar Takashi Iwai Committed by Mark Brown
Browse files

ASoC: intel: Remove superfluous snd_soc_jack_free_gpios() call



Since jack gpios are managed via devres, we don't have to call
snd_jack_free_gpios() at release any longer.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 2661112f
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
@@ -173,20 +173,8 @@ static int byt_max98090_probe(struct platform_device *pdev)
	return 0;
}

static int byt_max98090_remove(struct platform_device *pdev)
{
	struct snd_soc_card *card = platform_get_drvdata(pdev);
	struct byt_max98090_private *priv = snd_soc_card_get_drvdata(card);

	snd_soc_jack_free_gpios(&priv->jack, ARRAY_SIZE(hs_jack_gpios),
				hs_jack_gpios);

	return 0;
}

static struct platform_driver byt_max98090_driver = {
	.probe = byt_max98090_probe,
	.remove = byt_max98090_remove,
	.driver = {
		.name = "byt-max98090",
		.pm = &snd_soc_pm_ops,