aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroel kluin <roel.kluin@gmail.com>2008-09-10 19:22:44 +0200
committerPaul Mundt <lethal@linux-sh.org>2008-09-11 14:56:57 +0900
commitcc3c080d9f4484021e7b14f99de94a8c85a668d5 (patch)
tree0c0a7748d8b5313f3f9043227c755f904663fb5e
parentsh: intc_prio_data() test before subtraction on unsigned (diff)
downloadlinux-dev-cc3c080d9f4484021e7b14f99de94a8c85a668d5.tar.xz
linux-dev-cc3c080d9f4484021e7b14f99de94a8c85a668d5.zip
sh_eth: unsigned ndev->irq cannot be negative
unsigned ndev->irq cannot be negative Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r--drivers/net/sh_eth.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c
index 1c370e6aa641..1a04814291c1 100644
--- a/drivers/net/sh_eth.c
+++ b/drivers/net/sh_eth.c
@@ -1205,11 +1205,12 @@ static int sh_eth_drv_probe(struct platform_device *pdev)
devno = 0;
ndev->dma = -1;
- ndev->irq = platform_get_irq(pdev, 0);
- if (ndev->irq < 0) {
+ ret = platform_get_irq(pdev, 0);
+ if (ret < 0) {
ret = -ENODEV;
goto out_release;
}
+ ndev->irq = ret;
SET_NETDEV_DEV(ndev, &pdev->dev);