Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 280019
b: refs/heads/master
c: e71ef31
h: refs/heads/master
i:
  280017: da399f4
  280015: 06fa24b
v: v3
  • Loading branch information
Geert Uytterhoeven committed Dec 13, 2011
1 parent 8462a13 commit 1f1ff1f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0c51a0c6a3bc974d42d6ea5e15c0a00e1eb87fc2
refs/heads/master: e71ef315ddb96c239d6d8323008ac0b5ef6cee99
7 changes: 3 additions & 4 deletions trunk/drivers/net/ethernet/natsemi/macsonic.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,7 @@ static int macsonic_open(struct net_device* dev)
{
int retval;

retval = request_irq(dev->irq, sonic_interrupt, IRQ_FLG_FAST,
"sonic", dev);
retval = request_irq(dev->irq, sonic_interrupt, 0, "sonic", dev);
if (retval) {
printk(KERN_ERR "%s: unable to get IRQ %d.\n",
dev->name, dev->irq);
Expand All @@ -154,8 +153,8 @@ static int macsonic_open(struct net_device* dev)
* rupt as well, which must prevent re-entrance of the sonic handler.
*/
if (dev->irq == IRQ_AUTO_3) {
retval = request_irq(IRQ_NUBUS_9, macsonic_interrupt,
IRQ_FLG_FAST, "sonic", dev);
retval = request_irq(IRQ_NUBUS_9, macsonic_interrupt, 0,
"sonic", dev);
if (retval) {
printk(KERN_ERR "%s: unable to get IRQ %d.\n",
dev->name, IRQ_NUBUS_9);
Expand Down

0 comments on commit 1f1ff1f

Please sign in to comment.