From 84fee6a668c3e94b9fd9b4b140acfe011fecbebd Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 10 Oct 2011 01:01:37 +0200 Subject: Leave interrupts enabled in sym53c8xx driver The driver can work with them, and request_irq works fine with them. * linux/src/drivers/scsi/sym53c8xx.c (ncr_attach): Do not pass SA_INTERRUPT to request_irq(). --- linux/src/drivers/scsi/sym53c8xx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'linux/src/drivers/scsi') diff --git a/linux/src/drivers/scsi/sym53c8xx.c b/linux/src/drivers/scsi/sym53c8xx.c index 5bcd6b7..f496954 100644 --- a/linux/src/drivers/scsi/sym53c8xx.c +++ b/linux/src/drivers/scsi/sym53c8xx.c @@ -5787,7 +5787,8 @@ ncr_attach (Scsi_Host_Template *tpnt, int unit, ncr_device *device) ((driver_setup.irqm & 0x20) ? 0 : SA_INTERRUPT), #else ((driver_setup.irqm & 0x10) ? 0 : SA_SHIRQ) | -#if LINUX_VERSION_CODE < LinuxVersionCode(2,2,0) + +#if 0 && LINUX_VERSION_CODE < LinuxVersionCode(2,2,0) ((driver_setup.irqm & 0x20) ? 0 : SA_INTERRUPT), #else 0, -- cgit v1.2.3