diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2014-03-05 06:09:41 +0100 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2014-03-19 15:04:44 -0700 |
commit | 4909cc2b89715c2dfd4c466a37cc08b2b3890fed (patch) | |
tree | ec1265c77c00c04ba212fbaff3033b9994d97343 /drivers/scsi/in2000.c | |
parent | aa8033705eee0a2f682bd64974ea12e224e8aab5 (diff) | |
download | talos-op-linux-4909cc2b89715c2dfd4c466a37cc08b2b3890fed.tar.gz talos-op-linux-4909cc2b89715c2dfd4c466a37cc08b2b3890fed.zip |
[SCSI] remove deprecated IRQF_DISABLED from SCSI
It's a NOOP since 2.6.35 and it will be removed one day.
[jejb: remove from missed arm scsi drivers]
Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/in2000.c')
-rw-r--r-- | drivers/scsi/in2000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/in2000.c b/drivers/scsi/in2000.c index bf028218ac36..b1c4d831137d 100644 --- a/drivers/scsi/in2000.c +++ b/drivers/scsi/in2000.c @@ -2015,7 +2015,7 @@ static int __init in2000_detect(struct scsi_host_template * tpnt) write1_io(0, IO_FIFO_READ); /* start fifo out in read mode */ write1_io(0, IO_INTR_MASK); /* allow all ints */ x = int_tab[(switches & (SW_INT0 | SW_INT1)) >> SW_INT_SHIFT]; - if (request_irq(x, in2000_intr, IRQF_DISABLED, "in2000", instance)) { + if (request_irq(x, in2000_intr, 0, "in2000", instance)) { printk("in2000_detect: Unable to allocate IRQ.\n"); detect_count--; continue; |