[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <48FD6C22.8030607@gmail.com>
Date: Tue, 21 Oct 2008 01:44:02 -0400
From: roel kluin <roel.kluin@...il.com>
To: ben-linux@...ff.org
CC: netdev@...r.kernel.org
Subject: [PATCH] AX88796: ax_probe() fix irq assignment
dev->irq is unsigned
Signed-off-by: Roel Kluin <roel.kluin@...il.com>
---
diff --git a/drivers/net/ax88796.c b/drivers/net/ax88796.c
index 4207d6e..9a314d8 100644
--- a/drivers/net/ax88796.c
+++ b/drivers/net/ax88796.c
@@ -838,12 +838,12 @@ static int ax_probe(struct platform_device *pdev)
/* find the platform resources */
- dev->irq = platform_get_irq(pdev, 0);
- if (dev->irq < 0) {
+ ret = platform_get_irq(pdev, 0);
+ if (ret < 0) {
dev_err(&pdev->dev, "no IRQ specified\n");
- ret = -ENXIO;
goto exit_mem;
}
+ dev->irq = ret;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (res == NULL) {
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists