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/aacraid/sa.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/aacraid/sa.c')
-rw-r--r-- | drivers/scsi/aacraid/sa.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/scsi/aacraid/sa.c b/drivers/scsi/aacraid/sa.c index 2244f315f33b..e66477c98240 100644 --- a/drivers/scsi/aacraid/sa.c +++ b/drivers/scsi/aacraid/sa.c @@ -387,8 +387,7 @@ int aac_sa_init(struct aac_dev *dev) goto error_irq; dev->sync_mode = 0; /* sync. mode not supported */ if (request_irq(dev->pdev->irq, dev->a_ops.adapter_intr, - IRQF_SHARED|IRQF_DISABLED, - "aacraid", (void *)dev ) < 0) { + IRQF_SHARED, "aacraid", (void *)dev) < 0) { printk(KERN_WARNING "%s%d: Interrupt unavailable.\n", name, instance); goto error_iounmap; |