]> Git Repo - linux.git/commitdiff
drivers/mailbox/omap: make mbox->irq signed for error handling
authorDan Carpenter <[email protected]>
Thu, 23 Jan 2014 23:53:45 +0000 (15:53 -0800)
committerLinus Torvalds <[email protected]>
Fri, 24 Jan 2014 00:36:53 +0000 (16:36 -0800)
There is a bug in omap2_mbox_probe() where we try do:

mbox->irq = platform_get_irq(pdev, info->irq_id);
if (mbox->irq < 0) {

The problem is that mbox->irq is unsigned so the error handling doesn't
work.  I've changed it to a signed integer.

Signed-off-by: Dan Carpenter <[email protected]>
Cc: Suman Anna <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
Cc: Omar Ramirez Luna <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/mailbox/omap-mbox.h

index 6cd38fc685994b025c74689e324481bcf7b2b6b1..86d7518cd13b2c07b27b6931042e1d3c7b10529d 100644 (file)
@@ -52,7 +52,7 @@ struct omap_mbox_queue {
 
 struct omap_mbox {
        const char              *name;
-       unsigned int            irq;
+       int                     irq;
        struct omap_mbox_queue  *txq, *rxq;
        struct omap_mbox_ops    *ops;
        struct device           *dev;
This page took 0.054404 seconds and 4 git commands to generate.