diff options
author | Joe Carnuccio <joe.carnuccio@qlogic.com> | 2012-08-22 14:21:20 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-09-24 12:10:51 +0400 |
commit | 9567611215ed503985da9558dbc38b0034f318fd (patch) | |
tree | 183a1199d552cdfd1a9bdc90f3634be7f317f0e6 /drivers/scsi | |
parent | c74d88a46865a9c4f14a40ec1ae88e34f38da7a7 (diff) | |
download | blackbird-op-linux-9567611215ed503985da9558dbc38b0034f318fd.tar.gz blackbird-op-linux-9567611215ed503985da9558dbc38b0034f318fd.zip |
[SCSI] qla2xxx: Do PCI fundamental reset for ISP83xx
On ISP83xx cards perform a fundamental reset instead of hot reset.
Signed-off-by: Joe Carnuccio <joe.carnuccio@qlogic.com>
Signed-off-by: Chad Dupuis <chad.dupuis@qlogic.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_os.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c index 53ea9043c7ef..10362d3aaa30 100644 --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c @@ -2209,7 +2209,8 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) qla2x00_set_isp_flags(ha); /* Set EEH reset type to fundamental if required by hba */ - if (IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha)) + if (IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha) || + IS_QLA83XX(ha)) pdev->needs_freset = 1; ha->prev_topology = 0; |