public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH] davinci: da8xx/omap-l1x: add platform device for davinci-pcm-audio
@ 2011-01-21 15:12 Rajashekhara, Sudhakar
  2011-01-21 15:23 ` Sergei Shtylyov
  0 siblings, 1 reply; 3+ messages in thread
From: Rajashekhara, Sudhakar @ 2011-01-21 15:12 UTC (permalink / raw)
  To: linux-arm-kernel

After the multi-component commit f0fba2ad for ASoC, we need to
register the platform device for davinci-pcm-audio.

This patch and patch at [1] are required for audio to work on
DA850/OMAP-L138.

[1] https://patchwork.kernel.org/patch/495211/

Signed-off-by: Rajashekhara, Sudhakar <sudhakar.raj@ti.com>
Tested-by: Dan Sharon <dansharon@nanometrics.ca>
---
 arch/arm/mach-davinci/devices-da8xx.c |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c
index 9eec630..062190b 100644
--- a/arch/arm/mach-davinci/devices-da8xx.c
+++ b/arch/arm/mach-davinci/devices-da8xx.c
@@ -480,8 +480,20 @@ static struct platform_device da850_mcasp_device = {
 	.resource	= da850_mcasp_resources,
 };
 
+struct platform_device davinci_pcm_device = {
+	.name	= "davinci-pcm-audio",
+	.id	= -1,
+};
+
+static void davinci_init_pcm(void)
+{
+	platform_device_register(&davinci_pcm_device);
+}
+
 void __init da8xx_register_mcasp(int id, struct snd_platform_data *pdata)
 {
+	davinci_init_pcm();
+
 	/* DA830/OMAP-L137 has 3 instances of McASP */
 	if (cpu_is_davinci_da830() && id == 1) {
 		da830_mcasp1_device.dev.platform_data = pdata;
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] davinci: da8xx/omap-l1x: add platform device for davinci-pcm-audio
  2011-01-21 15:12 [PATCH] davinci: da8xx/omap-l1x: add platform device for davinci-pcm-audio Rajashekhara, Sudhakar
@ 2011-01-21 15:23 ` Sergei Shtylyov
  2011-01-21 15:36   ` Rajashekhara, Sudhakar
  0 siblings, 1 reply; 3+ messages in thread
From: Sergei Shtylyov @ 2011-01-21 15:23 UTC (permalink / raw)
  To: linux-arm-kernel

Hello.

Rajashekhara, Sudhakar wrote:

> After the multi-component commit f0fba2ad

   Please also specify the commit summary in parens, as asked by Linus.

> for ASoC, we need to
> register the platform device for davinci-pcm-audio.

> This patch and patch at [1] are required for audio to work on
> DA850/OMAP-L138.

> [1] https://patchwork.kernel.org/patch/495211/

> Signed-off-by: Rajashekhara, Sudhakar <sudhakar.raj@ti.com>
> Tested-by: Dan Sharon <dansharon@nanometrics.ca>
> ---
>  arch/arm/mach-davinci/devices-da8xx.c |   12 ++++++++++++
>  1 files changed, 12 insertions(+), 0 deletions(-)

> diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c
> index 9eec630..062190b 100644
> --- a/arch/arm/mach-davinci/devices-da8xx.c
> +++ b/arch/arm/mach-davinci/devices-da8xx.c
> @@ -480,8 +480,20 @@ static struct platform_device da850_mcasp_device = {
>  	.resource	= da850_mcasp_resources,
>  };
>  
> +struct platform_device davinci_pcm_device = {
> +	.name	= "davinci-pcm-audio",
> +	.id	= -1,
> +};
> +
> +static void davinci_init_pcm(void)
> +{
> +	platform_device_register(&davinci_pcm_device);
> +}
> +
>  void __init da8xx_register_mcasp(int id, struct snd_platform_data *pdata)
>  {
> +	davinci_init_pcm();

    Why not call platform_device_register() directly?

WBR, Sergei

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] davinci: da8xx/omap-l1x: add platform device for davinci-pcm-audio
  2011-01-21 15:23 ` Sergei Shtylyov
@ 2011-01-21 15:36   ` Rajashekhara, Sudhakar
  0 siblings, 0 replies; 3+ messages in thread
From: Rajashekhara, Sudhakar @ 2011-01-21 15:36 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Sergei,

On Fri, Jan 21, 2011 at 20:53:32, Sergei Shtylyov wrote:
> Hello.
> 
> Rajashekhara, Sudhakar wrote:
> 
> > After the multi-component commit f0fba2ad
> 
>    Please also specify the commit summary in parens, as asked by Linus.
> 

Sure, will do it.

> > for ASoC, we need to
> > register the platform device for davinci-pcm-audio.
> 
> > This patch and patch at [1] are required for audio to work on
> > DA850/OMAP-L138.
> 
> > [1] https://patchwork.kernel.org/patch/495211/
> 
> > Signed-off-by: Rajashekhara, Sudhakar <sudhakar.raj@ti.com>
> > Tested-by: Dan Sharon <dansharon@nanometrics.ca>
> > ---
> >  arch/arm/mach-davinci/devices-da8xx.c |   12 ++++++++++++
> >  1 files changed, 12 insertions(+), 0 deletions(-)
> 
> > diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c
> > index 9eec630..062190b 100644
> > --- a/arch/arm/mach-davinci/devices-da8xx.c
> > +++ b/arch/arm/mach-davinci/devices-da8xx.c
> > @@ -480,8 +480,20 @@ static struct platform_device da850_mcasp_device = {
> >  	.resource	= da850_mcasp_resources,
> >  };
> >  
> > +struct platform_device davinci_pcm_device = {
> > +	.name	= "davinci-pcm-audio",
> > +	.id	= -1,
> > +};
> > +
> > +static void davinci_init_pcm(void)
> > +{
> > +	platform_device_register(&davinci_pcm_device);
> > +}
> > +
> >  void __init da8xx_register_mcasp(int id, struct snd_platform_data *pdata)
> >  {
> > +	davinci_init_pcm();
> 
>     Why not call platform_device_register() directly?
> 

This is a good suggestion. Anyhow I am calling only platform_device_register()
functions inside da8xx_register_mcasp(), so I can add this one as well.

Regards,
Sudhakar

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-01-21 15:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-21 15:12 [PATCH] davinci: da8xx/omap-l1x: add platform device for davinci-pcm-audio Rajashekhara, Sudhakar
2011-01-21 15:23 ` Sergei Shtylyov
2011-01-21 15:36   ` Rajashekhara, Sudhakar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox