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 23:04:44 +0100 |
commit | 4909cc2b89715c2dfd4c466a37cc08b2b3890fed (patch) | |
tree | ec1265c77c00c04ba212fbaff3033b9994d97343 /drivers/scsi/pm8001/pm8001_init.c | |
parent | [SCSI] bfa: Updating Maintainers email ids (diff) | |
download | linux-4909cc2b89715c2dfd4c466a37cc08b2b3890fed.tar.xz 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/pm8001/pm8001_init.c')
-rw-r--r-- | drivers/scsi/pm8001/pm8001_init.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/scsi/pm8001/pm8001_init.c b/drivers/scsi/pm8001/pm8001_init.c index cb89d15b3028..c4f31b21feb8 100644 --- a/drivers/scsi/pm8001/pm8001_init.c +++ b/drivers/scsi/pm8001/pm8001_init.c @@ -716,11 +716,9 @@ static u32 pm8001_setup_msix(struct pm8001_hba_info *pm8001_ha) /* SPCv controllers supports 64 msi-x */ if (pm8001_ha->chip_id == chip_8001) { number_of_intr = 1; - flag |= IRQF_DISABLED; } else { number_of_intr = PM8001_MAX_MSIX_VEC; flag &= ~IRQF_SHARED; - flag |= IRQF_DISABLED; } max_entry = sizeof(pm8001_ha->msix_entries) / |