* [PATCH V2] ASoC: omap-hdmi: Use devm_snd_soc_register_component
@ 2014-07-08 16:47 Manish Badarkhe
2014-07-09 5:48 ` Peter Ujfalusi
0 siblings, 1 reply; 3+ messages in thread
From: Manish Badarkhe @ 2014-07-08 16:47 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>
---
Changes since V1:
Aligned function parameter properly.
:100644 100644 eb9c392... 8dcd7f7... M sound/soc/omap/omap-hdmi.c
sound/soc/omap/omap-hdmi.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/sound/soc/omap/omap-hdmi.c b/sound/soc/omap/omap-hdmi.c
index eb9c392..8dcd7f7 100644
--- a/sound/soc/omap/omap-hdmi.c
+++ b/sound/soc/omap/omap-hdmi.c
@@ -322,8 +322,9 @@ static int omap_hdmi_probe(struct platform_device *pdev)
}
dev_set_drvdata(&pdev->dev, hdmi_data);
- ret = snd_soc_register_component(&pdev->dev, &omap_hdmi_component,
- &omap_hdmi_dai, 1);
+ ret = devm_snd_soc_register_component(&pdev->dev,
+ &omap_hdmi_component,
+ &omap_hdmi_dai, 1);
if (ret)
return ret;
@@ -335,8 +336,6 @@ static int omap_hdmi_remove(struct platform_device *pdev)
{
struct hdmi_priv *hdmi_data = dev_get_drvdata(&pdev->dev);
- snd_soc_unregister_component(&pdev->dev);
-
if (hdmi_data == NULL) {
dev_err(&pdev->dev, "cannot obtain HDMi data\n");
return -ENODEV;
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH V2] ASoC: omap-hdmi: Use devm_snd_soc_register_component
2014-07-08 16:47 [PATCH V2] ASoC: omap-hdmi: Use devm_snd_soc_register_component Manish Badarkhe
@ 2014-07-09 5:48 ` Peter Ujfalusi
2014-07-09 11:44 ` Manish Badarkhe
0 siblings, 1 reply; 3+ messages in thread
From: Peter Ujfalusi @ 2014-07-09 5:48 UTC (permalink / raw)
To: Manish Badarkhe, linux-omap, alsa-devel; +Cc: broonie
On 07/08/2014 07:47 PM, 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>
Jut to make things easier I think we should not have this patch applied since
Jyri's OMAP4+ HDMI audio rework series is going to delete this file.
> ---
> Changes since V1:
> Aligned function parameter properly.
>
> :100644 100644 eb9c392... 8dcd7f7... M sound/soc/omap/omap-hdmi.c
> sound/soc/omap/omap-hdmi.c | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/sound/soc/omap/omap-hdmi.c b/sound/soc/omap/omap-hdmi.c
> index eb9c392..8dcd7f7 100644
> --- a/sound/soc/omap/omap-hdmi.c
> +++ b/sound/soc/omap/omap-hdmi.c
> @@ -322,8 +322,9 @@ static int omap_hdmi_probe(struct platform_device *pdev)
> }
>
> dev_set_drvdata(&pdev->dev, hdmi_data);
> - ret = snd_soc_register_component(&pdev->dev, &omap_hdmi_component,
> - &omap_hdmi_dai, 1);
> + ret = devm_snd_soc_register_component(&pdev->dev,
> + &omap_hdmi_component,
> + &omap_hdmi_dai, 1);
>
> if (ret)
> return ret;
> @@ -335,8 +336,6 @@ static int omap_hdmi_remove(struct platform_device *pdev)
> {
> struct hdmi_priv *hdmi_data = dev_get_drvdata(&pdev->dev);
>
> - snd_soc_unregister_component(&pdev->dev);
> -
> if (hdmi_data == NULL) {
> dev_err(&pdev->dev, "cannot obtain HDMi data\n");
> return -ENODEV;
>
--
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 V2] ASoC: omap-hdmi: Use devm_snd_soc_register_component
2014-07-09 5:48 ` Peter Ujfalusi
@ 2014-07-09 11:44 ` Manish Badarkhe
0 siblings, 0 replies; 3+ messages in thread
From: Manish Badarkhe @ 2014-07-09 11:44 UTC (permalink / raw)
To: Peter Ujfalusi; +Cc: linux-omap, alsa-devel, Mark Brown
Hi Peter,
On Wed, Jul 9, 2014 at 11:18 AM, Peter Ujfalusi <peter.ujfalusi@ti.com> wrote:
> On 07/08/2014 07:47 PM, 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>
>
> Jut to make things easier I think we should not have this patch applied since
> Jyri's OMAP4+ HDMI audio rework series is going to delete this file.
Ok fine.
Thanks
Manish Badarkhe
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-07-09 11:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-08 16:47 [PATCH V2] ASoC: omap-hdmi: Use devm_snd_soc_register_component Manish Badarkhe
2014-07-09 5:48 ` Peter Ujfalusi
2014-07-09 11:44 ` Manish Badarkhe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox