Commit cc3c080d authored by roel kluin's avatar roel kluin Committed by Paul Mundt

sh_eth: unsigned ndev->irq cannot be negative

unsigned ndev->irq cannot be negative
Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent b21a9104
...@@ -1205,11 +1205,12 @@ static int sh_eth_drv_probe(struct platform_device *pdev) ...@@ -1205,11 +1205,12 @@ static int sh_eth_drv_probe(struct platform_device *pdev)
devno = 0; devno = 0;
ndev->dma = -1; ndev->dma = -1;
ndev->irq = platform_get_irq(pdev, 0); ret = platform_get_irq(pdev, 0);
if (ndev->irq < 0) { if (ret < 0) {
ret = -ENODEV; ret = -ENODEV;
goto out_release; goto out_release;
} }
ndev->irq = ret;
SET_NETDEV_DEV(ndev, &pdev->dev); SET_NETDEV_DEV(ndev, &pdev->dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment