public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [RESEND] [PATCH 1/5] omap2/3/4: mailbox: remove compiler warning
@ 2010-02-22 23:41 Anna, Suman
  2010-02-22 23:57 ` Omar Ramirez Luna
  0 siblings, 1 reply; 4+ messages in thread
From: Anna, Suman @ 2010-02-22 23:41 UTC (permalink / raw)
  To: linux-omap@vger.kernel.org
  Cc: Tony Lindgren, Hiroshi.DOYU@nokia.com, Shilimkar, Santosh

>From 657358cd06a3f20bef2472945991749bacef12e6 Mon Sep 17 00:00:00 2001
From: Suman Anna <s-anna@ti.com>
Date: Mon, 25 Jan 2010 18:27:21 -0600
Subject: [PATCH] omap2/3/4: mailbox: remove compiler warning

Remove a compiler warning in device-specific
mailbox module.

Signed-off-by: Suman Anna <s-anna@ti.com>
---
 arch/arm/mach-omap2/mailbox.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c
index 2c9fd1c..8b5fc2a 100644
--- a/arch/arm/mach-omap2/mailbox.c
+++ b/arch/arm/mach-omap2/mailbox.c
@@ -419,8 +419,11 @@ static int __devinit omap2_mbox_probe(struct platform_device *pdev)
 #endif
 	return 0;
 
+#if defined(CONFIG_ARCH_OMAP2420) /* IVA */
 err_iva1:
-	omap_mbox_unregister(&mbox_dsp_info);
+	if (cpu_is_omap2420())
+		omap_mbox_unregister(&mbox_dsp_info);
+#endif
 
 err_dsp:
 	iounmap(mbox_base);
-- 
1.6.6.2

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

* Re: [RESEND] [PATCH 1/5] omap2/3/4: mailbox: remove compiler warning
  2010-02-22 23:41 [RESEND] [PATCH 1/5] omap2/3/4: mailbox: remove compiler warning Anna, Suman
@ 2010-02-22 23:57 ` Omar Ramirez Luna
  2010-02-23  0:05   ` Omar Ramirez Luna
  2010-02-23 16:12   ` Anna, Suman
  0 siblings, 2 replies; 4+ messages in thread
From: Omar Ramirez Luna @ 2010-02-22 23:57 UTC (permalink / raw)
  To: Anna, Suman
  Cc: linux-omap@vger.kernel.org, Tony Lindgren, Hiroshi.DOYU@nokia.com,
	Shilimkar, Santosh

On 2/22/2010 5:41 PM, Anna, Suman wrote:
>  From 657358cd06a3f20bef2472945991749bacef12e6 Mon Sep 17 00:00:00 2001
> From: Suman Anna<s-anna@ti.com>
> Date: Mon, 25 Jan 2010 18:27:21 -0600
> Subject: [PATCH] omap2/3/4: mailbox: remove compiler warning
>
> Remove a compiler warning in device-specific
> mailbox module.
>
> Signed-off-by: Suman Anna<s-anna@ti.com>
> ---
>   arch/arm/mach-omap2/mailbox.c |    5 ++++-
>   1 files changed, 4 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c
> index 2c9fd1c..8b5fc2a 100644
> --- a/arch/arm/mach-omap2/mailbox.c
> +++ b/arch/arm/mach-omap2/mailbox.c
> @@ -419,8 +419,11 @@ static int __devinit omap2_mbox_probe(struct platform_device *pdev)
>   #endif
>   	return 0;
>
> +#if defined(CONFIG_ARCH_OMAP2420) /* IVA */
>   err_iva1:
> -	omap_mbox_unregister(&mbox_dsp_info);
> +	if (cpu_is_omap2420())
> +		omap_mbox_unregister(&mbox_dsp_info);
> +#endif

why not moving omap_mbox_unregister to the block containing the ifdefs? 
at least you won't be adding an ifdef and if(cpu_xx)

from mailbox.c:

> #if defined(CONFIG_ARCH_OMAP2420) /* IVA */
> 	if (cpu_is_omap2420()) {
> 		/* IVA IRQ */
> 		res = platform_get_resource(pdev, IORESOURCE_IRQ, 1);
> 		if (unlikely(!res)) {
> 			dev_err(&pdev->dev, "invalid irq resource\n");
> 			ret = -ENODEV;
> 			goto err_iva1;

this is not even needed because at this point mailbox has not been 
registered (unless i'm missing something)

> 		}
> 		mbox_iva_info.irq = res->start;
> 		ret = omap_mbox_register(&pdev->dev, &mbox_iva_info);
> 		if (ret)
> 			goto err_iva1;

this should be omap_mbox_unregister... I haven't looked to the code to 
comment if its needed to call omap_mbox_unregister when 
omap_mbox_register fails.

> 	}
> #endif

Regards,

- omar


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

* Re: [RESEND] [PATCH 1/5] omap2/3/4: mailbox: remove compiler warning
  2010-02-22 23:57 ` Omar Ramirez Luna
@ 2010-02-23  0:05   ` Omar Ramirez Luna
  2010-02-23 16:12   ` Anna, Suman
  1 sibling, 0 replies; 4+ messages in thread
From: Omar Ramirez Luna @ 2010-02-23  0:05 UTC (permalink / raw)
  To: Anna, Suman
  Cc: linux-omap@vger.kernel.org, Tony Lindgren, Hiroshi.DOYU@nokia.com,
	Shilimkar, Santosh

On 2/22/2010 5:57 PM, Ramirez Luna, Omar wrote:
>
> why not moving omap_mbox_unregister to the block containing the ifdefs?
> at least you won't be adding an ifdef and if(cpu_xx)
>

i take this back... both statements are needed because of previous 
registration.

- omar

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

* RE: [RESEND] [PATCH 1/5] omap2/3/4: mailbox: remove compiler warning
  2010-02-22 23:57 ` Omar Ramirez Luna
  2010-02-23  0:05   ` Omar Ramirez Luna
@ 2010-02-23 16:12   ` Anna, Suman
  1 sibling, 0 replies; 4+ messages in thread
From: Anna, Suman @ 2010-02-23 16:12 UTC (permalink / raw)
  To: Ramirez Luna, Omar
  Cc: linux-omap@vger.kernel.org, Tony Lindgren, Hiroshi.DOYU@nokia.com,
	Shilimkar, Santosh

Omar,

> >
> > +#if defined(CONFIG_ARCH_OMAP2420) /* IVA */
> >   err_iva1:
> > -	omap_mbox_unregister(&mbox_dsp_info);
> > +	if (cpu_is_omap2420())
> > +		omap_mbox_unregister(&mbox_dsp_info);
> > +#endif
> 
> why not moving omap_mbox_unregister to the block containing the ifdefs?
> at least you won't be adding an ifdef and if(cpu_xx)

Thanks Omar for the comment. I have received multiple comments on this new #ifdef. So, have sent out a new cleaner patch removing this.

Regards
Suman

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

end of thread, other threads:[~2010-02-23 16:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-22 23:41 [RESEND] [PATCH 1/5] omap2/3/4: mailbox: remove compiler warning Anna, Suman
2010-02-22 23:57 ` Omar Ramirez Luna
2010-02-23  0:05   ` Omar Ramirez Luna
2010-02-23 16:12   ` Anna, Suman

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