Browse Source

ASoC: davinci-evm: drop un-necessary remove function

As davinci card gets registered using 'devm_' api
there is no need to unregister the card in 'remove'
function.
Hence drop the 'remove' function.

Fixes: ee2f615d6e59c (ASoC: davinci-evm: Add device tree binding)
Signed-off-by: Manish Badarkhe <manishvb@ti.com>
Signed-off-by: Jyri Sarha <jsarha@ti.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Cc: stable@vger.kernel.org
Manish Badarkhe 10 years ago
parent
commit
a57069e33f
1 changed files with 0 additions and 10 deletions
  1. 0 10
      sound/soc/davinci/davinci-evm.c

+ 0 - 10
sound/soc/davinci/davinci-evm.c

@@ -425,18 +425,8 @@ static int davinci_evm_probe(struct platform_device *pdev)
 	return ret;
 	return ret;
 }
 }
 
 
-static int davinci_evm_remove(struct platform_device *pdev)
-{
-	struct snd_soc_card *card = platform_get_drvdata(pdev);
-
-	snd_soc_unregister_card(card);
-
-	return 0;
-}
-
 static struct platform_driver davinci_evm_driver = {
 static struct platform_driver davinci_evm_driver = {
 	.probe		= davinci_evm_probe,
 	.probe		= davinci_evm_probe,
-	.remove		= davinci_evm_remove,
 	.driver		= {
 	.driver		= {
 		.name	= "davinci_evm",
 		.name	= "davinci_evm",
 		.pm	= &snd_soc_pm_ops,
 		.pm	= &snd_soc_pm_ops,