From: Axel Lin <axel.lin@ingics.com>
To: Mark Brown <broonie@kernel.org>
Cc: Manuel Lauss <manuel.lauss@gmail.com>,
alsa-devel@alsa-project.org, Liam Girdwood <lgirdwood@gmail.com>
Subject: [PATCH 1/5] ASoC: au1x: Convert to devm_snd_soc_register_platform
Date: Thu, 27 Aug 2015 09:09:29 +0800 [thread overview]
Message-ID: <1440637769.18698.1.camel@ingics.com> (raw)
Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
sound/soc/au1x/dbdma2.c | 11 ++---------
sound/soc/au1x/dma.c | 11 ++---------
2 files changed, 4 insertions(+), 18 deletions(-)
diff --git a/sound/soc/au1x/dbdma2.c b/sound/soc/au1x/dbdma2.c
index dd94fea..5741c0a 100644
--- a/sound/soc/au1x/dbdma2.c
+++ b/sound/soc/au1x/dbdma2.c
@@ -344,14 +344,8 @@ static int au1xpsc_pcm_drvprobe(struct platform_device *pdev)
platform_set_drvdata(pdev, dmadata);
- return snd_soc_register_platform(&pdev->dev, &au1xpsc_soc_platform);
-}
-
-static int au1xpsc_pcm_drvremove(struct platform_device *pdev)
-{
- snd_soc_unregister_platform(&pdev->dev);
-
- return 0;
+ return devm_snd_soc_register_platform(&pdev->dev,
+ &au1xpsc_soc_platform);
}
static struct platform_driver au1xpsc_pcm_driver = {
@@ -359,7 +353,6 @@ static struct platform_driver au1xpsc_pcm_driver = {
.name = "au1xpsc-pcm",
},
.probe = au1xpsc_pcm_drvprobe,
- .remove = au1xpsc_pcm_drvremove,
};
module_platform_driver(au1xpsc_pcm_driver);
diff --git a/sound/soc/au1x/dma.c b/sound/soc/au1x/dma.c
index 24cc7f4..fcf5a9ad 100644
--- a/sound/soc/au1x/dma.c
+++ b/sound/soc/au1x/dma.c
@@ -312,14 +312,8 @@ static int alchemy_pcm_drvprobe(struct platform_device *pdev)
platform_set_drvdata(pdev, ctx);
- return snd_soc_register_platform(&pdev->dev, &alchemy_pcm_soc_platform);
-}
-
-static int alchemy_pcm_drvremove(struct platform_device *pdev)
-{
- snd_soc_unregister_platform(&pdev->dev);
-
- return 0;
+ return devm_snd_soc_register_platform(&pdev->dev,
+ &alchemy_pcm_soc_platform);
}
static struct platform_driver alchemy_pcmdma_driver = {
@@ -327,7 +321,6 @@ static struct platform_driver alchemy_pcmdma_driver = {
.name = "alchemy-pcm-dma",
},
.probe = alchemy_pcm_drvprobe,
- .remove = alchemy_pcm_drvremove,
};
module_platform_driver(alchemy_pcmdma_driver);
--
2.1.0
next reply other threads:[~2015-08-27 1:09 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-27 1:09 Axel Lin [this message]
2015-08-27 1:11 ` [PATCH 2/5] ASoC: blackfin: Convert to devm_snd_soc_register_platform Axel Lin
2015-08-28 17:44 ` Applied "ASoC: blackfin: Convert to devm_snd_soc_register_platform" to the asoc tree Mark Brown
2015-08-27 1:12 ` [PATCH 3/5] ASoC: nuc900: Convert to devm_snd_soc_register_platform Axel Lin
2015-08-28 17:44 ` Applied "ASoC: nuc900: Convert to devm_snd_soc_register_platform" to the asoc tree Mark Brown
2015-08-27 1:13 ` [PATCH 4/5] ASoC: pxa: Convert to devm_snd_soc_register_platform Axel Lin
2015-08-28 17:44 ` Applied "ASoC: pxa: Convert to devm_snd_soc_register_platform" to the asoc tree Mark Brown
2015-08-27 1:14 ` [PATCH 5/5] ASoC: txx9: Convert to devm_snd_soc_register_platform Axel Lin
2015-08-28 17:44 ` Applied "ASoC: txx9: Convert to devm_snd_soc_register_platform" to the asoc tree Mark Brown
2015-08-28 17:44 ` Applied "ASoC: au1x: " Mark Brown
2015-08-30 6:24 ` [PATCH 1/5] ASoC: au1x: Convert to devm_snd_soc_register_platform Manuel Lauss
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1440637769.18698.1.camel@ingics.com \
--to=axel.lin@ingics.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=manuel.lauss@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox