Commit 14a500fe authored by Vaishali Thakkar's avatar Vaishali Thakkar Committed by Mark Brown

ASoC: samsung: Remove redundant arndale_audio_remove

There is no use of snd_soc_unregister_card in remove function
as devm_snd_soc_register_card in probe function automatically
handles it. So, remove use of snd_soc_unregister_card and with
this change remove arndale_audio_remove as it is now redundant.
Signed-off-by: default avatarVaishali Thakkar <vthakkar1994@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
Cc: stable@vger.kernel.org
parent bc0195aa
...@@ -116,15 +116,6 @@ static int arndale_audio_probe(struct platform_device *pdev) ...@@ -116,15 +116,6 @@ static int arndale_audio_probe(struct platform_device *pdev)
return ret; return ret;
} }
static int arndale_audio_remove(struct platform_device *pdev)
{
struct snd_soc_card *card = platform_get_drvdata(pdev);
snd_soc_unregister_card(card);
return 0;
}
static const struct of_device_id samsung_arndale_rt5631_of_match[] __maybe_unused = { static const struct of_device_id samsung_arndale_rt5631_of_match[] __maybe_unused = {
{ .compatible = "samsung,arndale-rt5631", }, { .compatible = "samsung,arndale-rt5631", },
{ .compatible = "samsung,arndale-alc5631", }, { .compatible = "samsung,arndale-alc5631", },
...@@ -139,7 +130,6 @@ static struct platform_driver arndale_audio_driver = { ...@@ -139,7 +130,6 @@ static struct platform_driver arndale_audio_driver = {
.of_match_table = of_match_ptr(samsung_arndale_rt5631_of_match), .of_match_table = of_match_ptr(samsung_arndale_rt5631_of_match),
}, },
.probe = arndale_audio_probe, .probe = arndale_audio_probe,
.remove = arndale_audio_remove,
}; };
module_platform_driver(arndale_audio_driver); module_platform_driver(arndale_audio_driver);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment