diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2007-08-12 18:22:53 -0700 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-08-15 13:02:36 -0500 |
commit | 8fef696b00b863c8c898293bd09be581b934849b (patch) | |
tree | 570bbab537e4f90f0eb95a7833ab6afbb509feaa /drivers/scsi | |
parent | 29856e2841ebc6dadff0db1032be14e467989452 (diff) | |
download | blackbird-op-linux-8fef696b00b863c8c898293bd09be581b934849b.tar.gz blackbird-op-linux-8fef696b00b863c8c898293bd09be581b934849b.zip |
[SCSI] qla2xxx: Don't modify parity bits during ISP25XX restart.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index 374abe19b547..8da0586e9dfd 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c @@ -3354,7 +3354,8 @@ qla2x00_restart_isp(scsi_qla_host_t *ha) spin_lock_irqsave(&ha->hardware_lock, flags); - if (!IS_QLA24XX(ha) && !IS_QLA54XX(ha)) { + if (!IS_QLA24XX(ha) && !IS_QLA54XX(ha) && + !IS_QLA25XX(ha)) { /* * Disable SRAM, Instruction RAM and GP RAM * parity. @@ -3370,7 +3371,8 @@ qla2x00_restart_isp(scsi_qla_host_t *ha) spin_lock_irqsave(&ha->hardware_lock, flags); - if (!IS_QLA24XX(ha) && !IS_QLA54XX(ha)) { + if (!IS_QLA24XX(ha) && !IS_QLA54XX(ha) && + !IS_QLA25XX(ha)) { /* Enable proper parity */ if (IS_QLA2300(ha)) /* SRAM parity */ |