diff options
author | Axel Lin <axel.lin@ingics.com> | 2015-08-30 17:20:01 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-09-14 18:33:17 +0100 |
commit | 5b73de19fd65f11a8c1b33bb7aeb0275898f8786 (patch) | |
tree | b5c1530f360de56eec19698b6b7bb1e5374f8473 | |
parent | 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f (diff) | |
download | op-kernel-dev-5b73de19fd65f11a8c1b33bb7aeb0275898f8786.zip op-kernel-dev-5b73de19fd65f11a8c1b33bb7aeb0275898f8786.tar.gz |
ASoC: mxs-sgtl5000: Convert to devm_snd_soc_register_card
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/mxs/mxs-sgtl5000.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sound/soc/mxs/mxs-sgtl5000.c b/sound/soc/mxs/mxs-sgtl5000.c index 6e6fce6..2b23ffb 100644 --- a/sound/soc/mxs/mxs-sgtl5000.c +++ b/sound/soc/mxs/mxs-sgtl5000.c @@ -142,7 +142,7 @@ static int mxs_sgtl5000_probe(struct platform_device *pdev) card->dev = &pdev->dev; platform_set_drvdata(pdev, card); - ret = snd_soc_register_card(card); + ret = devm_snd_soc_register_card(&pdev->dev, card); if (ret) { dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", ret); @@ -154,12 +154,8 @@ static int mxs_sgtl5000_probe(struct platform_device *pdev) static int mxs_sgtl5000_remove(struct platform_device *pdev) { - struct snd_soc_card *card = platform_get_drvdata(pdev); - mxs_saif_put_mclk(0); - snd_soc_unregister_card(card); - return 0; } |