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

Unverified Commit 822e70a8 authored by weiyongjun (A)'s avatar weiyongjun (A) Committed by Mark Brown
Browse files

ASoC: wm8400: Use devm_snd_soc_register_component()



Since the remove callback is removed, the snd_soc_unregister_component()
is missing when remove device. Using devm_snd_soc_register_component()
instead of snd_soc_register_component().

Fixes: 10dc44c6 ("ASoC: wm8400: replace codec to component")
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Acked-by: default avatarCharles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 10dc44c6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1343,7 +1343,7 @@ static const struct snd_soc_component_driver soc_component_dev_wm8400 = {

static int wm8400_probe(struct platform_device *pdev)
{
	return snd_soc_register_component(&pdev->dev,
	return devm_snd_soc_register_component(&pdev->dev,
			&soc_component_dev_wm8400,
			&wm8400_dai, 1);
}