public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] omap mailbox: platform_get_irq() error ignored
@ 2009-06-15  9:25 Hiroshi DOYU
  2009-06-15  9:30 ` Hiroshi DOYU
  2009-06-17  9:43 ` [APPLIED] " Tony Lindgren
  0 siblings, 2 replies; 3+ messages in thread
From: Hiroshi DOYU @ 2009-06-15  9:25 UTC (permalink / raw)
  To: linux-omap; +Cc: ext Roel Kluin, Hiroshi DOYU

From: ext Roel Kluin <roel.kluin@gmail.com>

platform_get_irq may return -ENXIO. but struct omap_mbox mbox_dsp_info.irq
is unsigned, so the error was not noticed.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
---
 arch/arm/mach-omap2/mailbox.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c
index fd5b8a5..6f71f37 100644
--- a/arch/arm/mach-omap2/mailbox.c
+++ b/arch/arm/mach-omap2/mailbox.c
@@ -282,12 +282,12 @@ static int __devinit omap2_mbox_probe(struct platform_device *pdev)
 		return -ENOMEM;
 
 	/* DSP or IVA2 IRQ */
-	mbox_dsp_info.irq = platform_get_irq(pdev, 0);
-	if (mbox_dsp_info.irq < 0) {
+	ret = platform_get_irq(pdev, 0);
+	if (ret < 0) {
 		dev_err(&pdev->dev, "invalid irq resource\n");
-		ret = -ENODEV;
 		goto err_dsp;
 	}
+	mbox_dsp_info.irq = ret;
 
 	ret = omap_mbox_register(&pdev->dev, &mbox_dsp_info);
 	if (ret)
-- 
1.6.0.4


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

* Re: [PATCH 1/1] omap mailbox: platform_get_irq() error ignored
  2009-06-15  9:25 [PATCH 1/1] omap mailbox: platform_get_irq() error ignored Hiroshi DOYU
@ 2009-06-15  9:30 ` Hiroshi DOYU
  2009-06-17  9:43 ` [APPLIED] " Tony Lindgren
  1 sibling, 0 replies; 3+ messages in thread
From: Hiroshi DOYU @ 2009-06-15  9:30 UTC (permalink / raw)
  To: tony; +Cc: roel.kluin, linux-omap

From: "Doyu Hiroshi (Nokia-D/Helsinki)" <hiroshi.doyu@nokia.com>
Subject: [PATCH 1/1] omap mailbox: platform_get_irq() error ignored
Date: Mon, 15 Jun 2009 11:25:33 +0200

> From: ext Roel Kluin <roel.kluin@gmail.com>

Messed up with our mail server...use the following line instead...

  From: Roel Kluin <roel.kluin@gmail.com>

> 
> platform_get_irq may return -ENXIO. but struct omap_mbox mbox_dsp_info.irq
> is unsigned, so the error was not noticed.
> 
> Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
> Signed-off-by: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
> ---
>  arch/arm/mach-omap2/mailbox.c |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c
> index fd5b8a5..6f71f37 100644
> --- a/arch/arm/mach-omap2/mailbox.c
> +++ b/arch/arm/mach-omap2/mailbox.c
> @@ -282,12 +282,12 @@ static int __devinit omap2_mbox_probe(struct platform_device *pdev)
>  		return -ENOMEM;
>  
>  	/* DSP or IVA2 IRQ */
> -	mbox_dsp_info.irq = platform_get_irq(pdev, 0);
> -	if (mbox_dsp_info.irq < 0) {
> +	ret = platform_get_irq(pdev, 0);
> +	if (ret < 0) {
>  		dev_err(&pdev->dev, "invalid irq resource\n");
> -		ret = -ENODEV;
>  		goto err_dsp;
>  	}
> +	mbox_dsp_info.irq = ret;
>  
>  	ret = omap_mbox_register(&pdev->dev, &mbox_dsp_info);
>  	if (ret)
> -- 
> 1.6.0.4
> 
> --
> 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

* [APPLIED] [PATCH 1/1] omap mailbox: platform_get_irq() error ignored
  2009-06-15  9:25 [PATCH 1/1] omap mailbox: platform_get_irq() error ignored Hiroshi DOYU
  2009-06-15  9:30 ` Hiroshi DOYU
@ 2009-06-17  9:43 ` Tony Lindgren
  1 sibling, 0 replies; 3+ messages in thread
From: Tony Lindgren @ 2009-06-17  9:43 UTC (permalink / raw)
  To: linux-omap

This patch has been applied to the linux-omap
by youw fwiendly patch wobot.

Branch in linux-omap: omap-fixes

Initial commit ID (Likely to change): 20514e5b5c3e86d58fb1825c8f89e18c3bcc61a7

PatchWorks
http://patchwork.kernel.org/patch/30287/

Git (Likely to change, and takes a while to get mirrored)
http://git.kernel.org/?p=linux/kernel/git/tmlind/linux-omap-2.6.git;a=commit;h=20514e5b5c3e86d58fb1825c8f89e18c3bcc61a7



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

end of thread, other threads:[~2009-06-17  9:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-15  9:25 [PATCH 1/1] omap mailbox: platform_get_irq() error ignored Hiroshi DOYU
2009-06-15  9:30 ` Hiroshi DOYU
2009-06-17  9:43 ` [APPLIED] " Tony Lindgren

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