* [PATCH] ASoC: omap-dmic: Use devm_snd_soc_register_component
@ 2014-07-06 6:50 Manish Badarkhe
2014-07-07 9:30 ` Peter Ujfalusi
0 siblings, 1 reply; 3+ messages in thread
From: Manish Badarkhe @ 2014-07-06 6:50 UTC (permalink / raw)
To: linux-omap, alsa-devel; +Cc: broonie, peter.ujfalusi, badarkhe.manish
Replaced snd_soc_register_component with its devres equivalent,
devm_snd_soc_register_component.
Signed-off-by: Manish Badarkhe <badarkhe.manish@gmail.com>
---
:100644 100644 6925d71... 011e30e... M sound/soc/omap/omap-dmic.c
sound/soc/omap/omap-dmic.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/sound/soc/omap/omap-dmic.c b/sound/soc/omap/omap-dmic.c
index 6925d71..011e30e 100644
--- a/sound/soc/omap/omap-dmic.c
+++ b/sound/soc/omap/omap-dmic.c
@@ -490,7 +490,7 @@ static int asoc_dmic_probe(struct platform_device *pdev)
}
- ret = snd_soc_register_component(&pdev->dev, &omap_dmic_component,
+ ret = devm_snd_soc_register_component(&pdev->dev, &omap_dmic_component,
&omap_dmic_dai, 1);
if (ret)
goto err_put_clk;
@@ -510,7 +510,6 @@ static int asoc_dmic_remove(struct platform_device *pdev)
{
struct omap_dmic *dmic = platform_get_drvdata(pdev);
- snd_soc_unregister_component(&pdev->dev);
clk_put(dmic->fclk);
return 0;
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] ASoC: omap-dmic: Use devm_snd_soc_register_component
2014-07-06 6:50 [PATCH] ASoC: omap-dmic: Use devm_snd_soc_register_component Manish Badarkhe
@ 2014-07-07 9:30 ` Peter Ujfalusi
2014-07-08 11:48 ` Manish Badarkhe
0 siblings, 1 reply; 3+ messages in thread
From: Peter Ujfalusi @ 2014-07-07 9:30 UTC (permalink / raw)
To: Manish Badarkhe, linux-omap, alsa-devel; +Cc: broonie
On 07/06/2014 09:50 AM, Manish Badarkhe wrote:
> Replaced snd_soc_register_component with its devres equivalent,
> devm_snd_soc_register_component.
>
> Signed-off-by: Manish Badarkhe <badarkhe.manish@gmail.com>
> ---
> :100644 100644 6925d71... 011e30e... M sound/soc/omap/omap-dmic.c
> sound/soc/omap/omap-dmic.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/sound/soc/omap/omap-dmic.c b/sound/soc/omap/omap-dmic.c
> index 6925d71..011e30e 100644
> --- a/sound/soc/omap/omap-dmic.c
> +++ b/sound/soc/omap/omap-dmic.c
> @@ -490,7 +490,7 @@ static int asoc_dmic_probe(struct platform_device *pdev)
> }
>
>
> - ret = snd_soc_register_component(&pdev->dev, &omap_dmic_component,
> + ret = devm_snd_soc_register_component(&pdev->dev, &omap_dmic_component,
> &omap_dmic_dai, 1);
Would you align the parameters at the same time?
> if (ret)
> goto err_put_clk;
> @@ -510,7 +510,6 @@ static int asoc_dmic_remove(struct platform_device *pdev)
> {
> struct omap_dmic *dmic = platform_get_drvdata(pdev);
>
> - snd_soc_unregister_component(&pdev->dev);
> clk_put(dmic->fclk);
>
> return 0;
>
--
Péter
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] ASoC: omap-dmic: Use devm_snd_soc_register_component
2014-07-07 9:30 ` Peter Ujfalusi
@ 2014-07-08 11:48 ` Manish Badarkhe
0 siblings, 0 replies; 3+ messages in thread
From: Manish Badarkhe @ 2014-07-08 11:48 UTC (permalink / raw)
To: Peter Ujfalusi; +Cc: linux-omap, alsa-devel, Mark Brown
Hi Peter,
On Mon, Jul 7, 2014 at 3:00 PM, Peter Ujfalusi <peter.ujfalusi@ti.com> wrote:
> On 07/06/2014 09:50 AM, Manish Badarkhe wrote:
>> Replaced snd_soc_register_component with its devres equivalent,
>> devm_snd_soc_register_component.
>>
>> Signed-off-by: Manish Badarkhe <badarkhe.manish@gmail.com>
>> ---
>> :100644 100644 6925d71... 011e30e... M sound/soc/omap/omap-dmic.c
>> sound/soc/omap/omap-dmic.c | 3 +--
>> 1 file changed, 1 insertion(+), 2 deletions(-)
>>
>> diff --git a/sound/soc/omap/omap-dmic.c b/sound/soc/omap/omap-dmic.c
>> index 6925d71..011e30e 100644
>> --- a/sound/soc/omap/omap-dmic.c
>> +++ b/sound/soc/omap/omap-dmic.c
>> @@ -490,7 +490,7 @@ static int asoc_dmic_probe(struct platform_device *pdev)
>> }
>>
>>
>> - ret = snd_soc_register_component(&pdev->dev, &omap_dmic_component,
>> + ret = devm_snd_soc_register_component(&pdev->dev, &omap_dmic_component,
>> &omap_dmic_dai, 1);
>
> Would you align the parameters at the same time?
Sure, will do it and send next version.
Regards
Manish Badarkhe
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-07-08 11:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-06 6:50 [PATCH] ASoC: omap-dmic: Use devm_snd_soc_register_component Manish Badarkhe
2014-07-07 9:30 ` Peter Ujfalusi
2014-07-08 11:48 ` Manish Badarkhe
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).