diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2001-03-21 22:51:46 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2001-03-21 22:51:46 +0000 |
commit | 3ea0850922f80849a20c6177fcaf9c458a54ad09 (patch) | |
tree | 9d2280b3a0f5347ca71e7d580d60bb16e01d8008 | |
parent | 2efdc283effceabcdcdb517bef8b81175f9c9351 (diff) |
IOC3 can share interrupts, so allocate interrupt with SA_SHIRQ.
-rw-r--r-- | drivers/net/ioc3-eth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ioc3-eth.c b/drivers/net/ioc3-eth.c index 85f32e264..826998930 100644 --- a/drivers/net/ioc3-eth.c +++ b/drivers/net/ioc3-eth.c @@ -858,7 +858,7 @@ ioc3_open(struct net_device *dev) { struct ioc3_private *ip; - if (request_irq(dev->irq, ioc3_interrupt, 0, ioc3_str, dev)) { + if (request_irq(dev->irq, ioc3_interrupt, SA_SHIRQ, ioc3_str, dev)) { printk(KERN_ERR "%s: Can't get irq %d\n", dev->name, dev->irq); return -EAGAIN; |