* [PATCH] ASoC: omap-mcpdm: Clean up with devm_* function
@ 2013-02-13 7:21 Sebastien Guiriec
2013-02-13 13:17 ` Peter Ujfalusi
2013-02-13 13:20 ` Mark Brown
0 siblings, 2 replies; 3+ messages in thread
From: Sebastien Guiriec @ 2013-02-13 7:21 UTC (permalink / raw)
To: Sebastien Guiriec, Peter Ujfalusi, Jarkko Nikula, Liam Girdwood,
Mark Brown, linux-omap, alsa-devel
Clean up McPDM driver with devm_ function.
Signed-off-by: Sebastien Guiriec <s-guiriec@ti.com>
---
sound/soc/omap/omap-mcpdm.c | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/sound/soc/omap/omap-mcpdm.c b/sound/soc/omap/omap-mcpdm.c
index 5ca11bd..079f277 100644
--- a/sound/soc/omap/omap-mcpdm.c
+++ b/sound/soc/omap/omap-mcpdm.c
@@ -369,7 +369,7 @@ static int omap_mcpdm_probe(struct snd_soc_dai *dai)
pm_runtime_get_sync(mcpdm->dev);
omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, 0x00);
- ret = request_irq(mcpdm->irq, omap_mcpdm_irq_handler,
+ ret = devm_request_irq(mcpdm->dev, mcpdm->irq, omap_mcpdm_irq_handler,
0, "McPDM", (void *)mcpdm);
pm_runtime_put_sync(mcpdm->dev);
@@ -389,7 +389,6 @@ static int omap_mcpdm_remove(struct snd_soc_dai *dai)
{
struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai);
- free_irq(mcpdm->irq, (void *)mcpdm);
pm_runtime_disable(mcpdm->dev);
return 0;
@@ -465,14 +464,11 @@ static int asoc_mcpdm_probe(struct platform_device *pdev)
if (res == NULL)
return -ENOMEM;
- if (!devm_request_mem_region(&pdev->dev, res->start,
- resource_size(res), "McPDM"))
- return -EBUSY;
-
- mcpdm->io_base = devm_ioremap(&pdev->dev, res->start,
- resource_size(res));
- if (!mcpdm->io_base)
+ mcpdm->io_base = devm_request_and_ioremap(&pdev->dev, res);
+ if (!mcpdm->io_base) {
+ dev_err(&pdev->dev, "cannot remap\n");
return -ENOMEM;
+ }
mcpdm->irq = platform_get_irq(pdev, 0);
if (mcpdm->irq < 0)
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ASoC: omap-mcpdm: Clean up with devm_* function
2013-02-13 7:21 [PATCH] ASoC: omap-mcpdm: Clean up with devm_* function Sebastien Guiriec
@ 2013-02-13 13:17 ` Peter Ujfalusi
2013-02-13 13:20 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Peter Ujfalusi @ 2013-02-13 13:17 UTC (permalink / raw)
To: Sebastien Guiriec
Cc: alsa-devel, linux-omap, Mark Brown, Liam Girdwood, Jarkko Nikula
On 02/13/2013 08:21 AM, Sebastien Guiriec wrote:
> Clean up McPDM driver with devm_ function.
Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
>
> Signed-off-by: Sebastien Guiriec <s-guiriec@ti.com>
> ---
> sound/soc/omap/omap-mcpdm.c | 14 +++++---------
> 1 file changed, 5 insertions(+), 9 deletions(-)
>
> diff --git a/sound/soc/omap/omap-mcpdm.c b/sound/soc/omap/omap-mcpdm.c
> index 5ca11bd..079f277 100644
> --- a/sound/soc/omap/omap-mcpdm.c
> +++ b/sound/soc/omap/omap-mcpdm.c
> @@ -369,7 +369,7 @@ static int omap_mcpdm_probe(struct snd_soc_dai *dai)
> pm_runtime_get_sync(mcpdm->dev);
> omap_mcpdm_write(mcpdm, MCPDM_REG_CTRL, 0x00);
>
> - ret = request_irq(mcpdm->irq, omap_mcpdm_irq_handler,
> + ret = devm_request_irq(mcpdm->dev, mcpdm->irq, omap_mcpdm_irq_handler,
> 0, "McPDM", (void *)mcpdm);
>
> pm_runtime_put_sync(mcpdm->dev);
> @@ -389,7 +389,6 @@ static int omap_mcpdm_remove(struct snd_soc_dai *dai)
> {
> struct omap_mcpdm *mcpdm = snd_soc_dai_get_drvdata(dai);
>
> - free_irq(mcpdm->irq, (void *)mcpdm);
> pm_runtime_disable(mcpdm->dev);
>
> return 0;
> @@ -465,14 +464,11 @@ static int asoc_mcpdm_probe(struct platform_device *pdev)
> if (res == NULL)
> return -ENOMEM;
>
> - if (!devm_request_mem_region(&pdev->dev, res->start,
> - resource_size(res), "McPDM"))
> - return -EBUSY;
> -
> - mcpdm->io_base = devm_ioremap(&pdev->dev, res->start,
> - resource_size(res));
> - if (!mcpdm->io_base)
> + mcpdm->io_base = devm_request_and_ioremap(&pdev->dev, res);
> + if (!mcpdm->io_base) {
> + dev_err(&pdev->dev, "cannot remap\n");
> return -ENOMEM;
> + }
>
> mcpdm->irq = platform_get_irq(pdev, 0);
> if (mcpdm->irq < 0)
>
--
Péter
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ASoC: omap-mcpdm: Clean up with devm_* function
2013-02-13 7:21 [PATCH] ASoC: omap-mcpdm: Clean up with devm_* function Sebastien Guiriec
2013-02-13 13:17 ` Peter Ujfalusi
@ 2013-02-13 13:20 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2013-02-13 13:20 UTC (permalink / raw)
To: Sebastien Guiriec
Cc: Peter Ujfalusi, Jarkko Nikula, Liam Girdwood, linux-omap,
alsa-devel
[-- Attachment #1: Type: text/plain, Size: 130 bytes --]
On Wed, Feb 13, 2013 at 08:21:54AM +0100, Sebastien Guiriec wrote:
> Clean up McPDM driver with devm_ function.
Applied, thanks.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-02-13 13:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-13 7:21 [PATCH] ASoC: omap-mcpdm: Clean up with devm_* function Sebastien Guiriec
2013-02-13 13:17 ` Peter Ujfalusi
2013-02-13 13:20 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).