patch-2.1.96 linux/drivers/scsi/wd7000.c
Next file: linux/drivers/sound/Config.in
Previous file: linux/drivers/scsi/ultrastor.c
Back to the patch index
Back to the overall index
- Lines: 33
- Date:
Sat Apr 11 11:13:25 1998
- Orig file:
v2.1.95/linux/drivers/scsi/wd7000.c
- Orig date:
Wed Apr 1 20:11:53 1998
diff -u --recursive --new-file v2.1.95/linux/drivers/scsi/wd7000.c linux/drivers/scsi/wd7000.c
@@ -154,6 +154,7 @@
#include <linux/sched.h>
#include <linux/malloc.h>
#include <asm/system.h>
+#include <asm/spinlock.h>
#include <asm/dma.h>
#include <asm/io.h>
#include <linux/ioport.h>
@@ -1148,6 +1149,15 @@
#endif
}
+void do_wd7000_intr_handle (int irq, void *dev_id, struct pt_regs *regs)
+{
+ unsigned long flags;
+
+ spin_lock_irqsave(&io_request_lock, flags);
+ wd7000_intr_handle(irq, dev_id, regs);
+ spin_unlock_irqrestore(&io_request_lock, flags);
+}
+
int wd7000_queuecommand (Scsi_Cmnd *SCpnt, void (*done) (Scsi_Cmnd *))
{
@@ -1314,7 +1324,7 @@
return (0);
}
- if (request_irq (host->irq, wd7000_intr_handle, SA_INTERRUPT, "wd7000", NULL)) {
+ if (request_irq (host->irq, do_wd7000_intr_handle, SA_INTERRUPT, "wd7000", NULL)) {
printk ("wd7000_init: can't get IRQ %d.\n", host->irq);
return (0);
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov