]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
mac8390: propagate error code from request_irq
authorFinn Thain <fthain@telegraphics.com.au>
Tue, 1 Jun 2010 02:18:32 +0000 (02:18 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 2 Jun 2010 12:16:22 +0000 (05:16 -0700)
Use the request_irq() error code as the return value for mac8390_open().
EAGAIN doesn't make sense for Nubus slot IRQs. Only this driver can claim
this IRQ (until the NIC is removed, which means everything is powered
down).

Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/mac8390.c

index 1136c9a22b6772caa234a576eb5793d3b1e4fd78..6b14cfef46c26d064d044336ea3cee6d2efebf2c 100644 (file)
@@ -641,12 +641,13 @@ static int __init mac8390_initdev(struct net_device *dev,
 
 static int mac8390_open(struct net_device *dev)
 {
+       int err;
+
        __ei_open(dev);
-       if (request_irq(dev->irq, __ei_interrupt, 0, "8390 Ethernet", dev)) {
-               pr_info("%s: unable to get IRQ %d.\n", dev->name, dev->irq);
-               return -EAGAIN;
-       }
-       return 0;
+       err = request_irq(dev->irq, __ei_interrupt, 0, "8390 Ethernet", dev);
+       if (err)
+               pr_info("%s: unable to get IRQ %d\n", dev->name, dev->irq);
+       return err;
 }
 
 static int mac8390_close(struct net_device *dev)