diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2006-12-13 22:20:32 -0500 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2007-01-03 17:58:09 -0500 |
commit | 96ca5cad09edd86da9c8fd613c9406cdf978cd6d (patch) | |
tree | f515a928e5af5a7f08f2cbbafcbd0d6a36dd4082 | |
parent | 07f31805e1fa98f802f60433cdd1c0461120ef0e (diff) |
[SCSI] qla2xxx: Use generic isp_ops.fw_dump() function.
Rather than a direct call, as was done in the case of a
RISC-paused state within the ISP24xx interrupt handler.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
-rw-r--r-- | drivers/scsi/qla2xxx/qla_isr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c index 6a741e313107..39fd17b05be5 100644 --- a/drivers/scsi/qla2xxx/qla_isr.c +++ b/drivers/scsi/qla2xxx/qla_isr.c | |||
@@ -1444,8 +1444,7 @@ qla24xx_intr_handler(int irq, void *dev_id) | |||
1444 | 1444 | ||
1445 | qla_printk(KERN_INFO, ha, "RISC paused -- HCCR=%x, " | 1445 | qla_printk(KERN_INFO, ha, "RISC paused -- HCCR=%x, " |
1446 | "Dumping firmware!\n", hccr); | 1446 | "Dumping firmware!\n", hccr); |
1447 | qla24xx_fw_dump(ha, 1); | 1447 | ha->isp_ops.fw_dump(ha, 1); |
1448 | |||
1449 | set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags); | 1448 | set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags); |
1450 | break; | 1449 | break; |
1451 | } else if ((stat & HSRX_RISC_INT) == 0) | 1450 | } else if ((stat & HSRX_RISC_INT) == 0) |