diff options
Diffstat (limited to 'drivers/net/sun3lance.c')
-rw-r--r-- | drivers/net/sun3lance.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/sun3lance.c b/drivers/net/sun3lance.c index d4c0002b43db..2dcadb169a22 100644 --- a/drivers/net/sun3lance.c +++ b/drivers/net/sun3lance.c | |||
@@ -55,7 +55,7 @@ static char *version = "sun3lance.c: v1.2 1/12/2001 Sam Creasey (sammy@sammy.ne | |||
55 | /* sun3/60 addr/irq for the lance chip. If your sun is different, | 55 | /* sun3/60 addr/irq for the lance chip. If your sun is different, |
56 | change this. */ | 56 | change this. */ |
57 | #define LANCE_OBIO 0x120000 | 57 | #define LANCE_OBIO 0x120000 |
58 | #define LANCE_IRQ IRQ3 | 58 | #define LANCE_IRQ IRQ_AUTO_3 |
59 | 59 | ||
60 | /* Debug level: | 60 | /* Debug level: |
61 | * 0 = silent, print only serious errors | 61 | * 0 = silent, print only serious errors |
@@ -341,7 +341,7 @@ static int __init lance_probe( struct net_device *dev) | |||
341 | 341 | ||
342 | REGA(CSR0) = CSR0_STOP; | 342 | REGA(CSR0) = CSR0_STOP; |
343 | 343 | ||
344 | request_irq(LANCE_IRQ, lance_interrupt, SA_INTERRUPT, "SUN3 Lance", dev); | 344 | request_irq(LANCE_IRQ, lance_interrupt, IRQF_DISABLED, "SUN3 Lance", dev); |
345 | dev->irq = (unsigned short)LANCE_IRQ; | 345 | dev->irq = (unsigned short)LANCE_IRQ; |
346 | 346 | ||
347 | 347 | ||