diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2011-10-10 01:01:37 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2011-10-10 01:01:37 +0200 |
commit | 84fee6a668c3e94b9fd9b4b140acfe011fecbebd (patch) | |
tree | b9f59e907d100f3307ea4760ff693abf3fe50f2c /linux/src/drivers | |
parent | 5dbe4149457190564c9a9a4f22cc86dbc7924e62 (diff) |
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().
Diffstat (limited to 'linux/src/drivers')
-rw-r--r-- | linux/src/drivers/scsi/sym53c8xx.c | 3 |
1 files changed, 2 insertions, 1 deletions
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, |