Commit e71ef315 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven

m68k/net: Remove obsolete IRQ_FLG_* users

The m68k core irq code stopped honoring these flags during the irq
restructuring in 2006.
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Acked-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0c51a0c6
...@@ -142,8 +142,7 @@ static int macsonic_open(struct net_device* dev) ...@@ -142,8 +142,7 @@ static int macsonic_open(struct net_device* dev)
{ {
int retval; int retval;
retval = request_irq(dev->irq, sonic_interrupt, IRQ_FLG_FAST, retval = request_irq(dev->irq, sonic_interrupt, 0, "sonic", dev);
"sonic", dev);
if (retval) { if (retval) {
printk(KERN_ERR "%s: unable to get IRQ %d.\n", printk(KERN_ERR "%s: unable to get IRQ %d.\n",
dev->name, dev->irq); dev->name, dev->irq);
...@@ -154,8 +153,8 @@ static int macsonic_open(struct net_device* dev) ...@@ -154,8 +153,8 @@ static int macsonic_open(struct net_device* dev)
* rupt as well, which must prevent re-entrance of the sonic handler. * rupt as well, which must prevent re-entrance of the sonic handler.
*/ */
if (dev->irq == IRQ_AUTO_3) { if (dev->irq == IRQ_AUTO_3) {
retval = request_irq(IRQ_NUBUS_9, macsonic_interrupt, retval = request_irq(IRQ_NUBUS_9, macsonic_interrupt, 0,
IRQ_FLG_FAST, "sonic", dev); "sonic", dev);
if (retval) { if (retval) {
printk(KERN_ERR "%s: unable to get IRQ %d.\n", printk(KERN_ERR "%s: unable to get IRQ %d.\n",
dev->name, IRQ_NUBUS_9); dev->name, IRQ_NUBUS_9);
......
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