drivers/net: sgiseeq: fix return on error
If we continue on error, we'd likely free the IRQ that we didn't get, right? Signed-off-by: Nicolas Kaiser <nikai@nikai.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Родитель
7932c2e55c
Коммит
06d6e6d2e4
|
@ -531,7 +531,7 @@ static int sgiseeq_open(struct net_device *dev)
|
|||
|
||||
if (request_irq(irq, sgiseeq_interrupt, 0, sgiseeqstr, dev)) {
|
||||
printk(KERN_ERR "Seeq8003: Can't get irq %d\n", dev->irq);
|
||||
err = -EAGAIN;
|
||||
return -EAGAIN;
|
||||
}
|
||||
|
||||
err = init_seeq(dev, sp, sregs);
|
||||
|
|
Загрузка…
Ссылка в новой задаче