diff options
Diffstat (limited to 'drivers/net/ethernet/amd/atarilance.c')
-rw-r--r-- | drivers/net/ethernet/amd/atarilance.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/ethernet/amd/atarilance.c b/drivers/net/ethernet/amd/atarilance.c index e07ce5ff2d48..b10964e8cb54 100644 --- a/drivers/net/ethernet/amd/atarilance.c +++ b/drivers/net/ethernet/amd/atarilance.c | |||
@@ -553,8 +553,8 @@ static unsigned long __init lance_probe1( struct net_device *dev, | |||
553 | if (lp->cardtype == PAM_CARD || | 553 | if (lp->cardtype == PAM_CARD || |
554 | memaddr == (unsigned short *)0xffe00000) { | 554 | memaddr == (unsigned short *)0xffe00000) { |
555 | /* PAMs card and Riebl on ST use level 5 autovector */ | 555 | /* PAMs card and Riebl on ST use level 5 autovector */ |
556 | if (request_irq(IRQ_AUTO_5, lance_interrupt, IRQ_TYPE_PRIO, | 556 | if (request_irq(IRQ_AUTO_5, lance_interrupt, 0, |
557 | "PAM,Riebl-ST Ethernet", dev)) { | 557 | "PAM,Riebl-ST Ethernet", dev)) { |
558 | printk( "Lance: request for irq %d failed\n", IRQ_AUTO_5 ); | 558 | printk( "Lance: request for irq %d failed\n", IRQ_AUTO_5 ); |
559 | return 0; | 559 | return 0; |
560 | } | 560 | } |
@@ -567,8 +567,8 @@ static unsigned long __init lance_probe1( struct net_device *dev, | |||
567 | printk( "Lance: request for VME interrupt failed\n" ); | 567 | printk( "Lance: request for VME interrupt failed\n" ); |
568 | return 0; | 568 | return 0; |
569 | } | 569 | } |
570 | if (request_irq(irq, lance_interrupt, IRQ_TYPE_PRIO, | 570 | if (request_irq(irq, lance_interrupt, 0, "Riebl-VME Ethernet", |
571 | "Riebl-VME Ethernet", dev)) { | 571 | dev)) { |
572 | printk( "Lance: request for irq %u failed\n", irq ); | 572 | printk( "Lance: request for irq %u failed\n", irq ); |
573 | return 0; | 573 | return 0; |
574 | } | 574 | } |