diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2005-07-06 13:30:05 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-07-14 10:47:30 -0400 |
commit | abbd8870b9cb7754a4935826bc9f3c7b029f8b7c (patch) | |
tree | c795f15d35c18a08c97dcbdaeb83a4e0c67679c6 /drivers/scsi/qla2xxx/qla_isr.c | |
parent | eb1dd68bc897d4e5a5133bfffbd4777a0fe16c4c (diff) |
[SCSI] qla2xxx: Factor-out ISP specific functions to method-based call tables.
Factor-out ISP specific functions to method-based call tables.
In anticipation of ISP24xx/ISP25xx support, factor-out ISP
specific functions into a method-based call table.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_isr.c')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_isr.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c index e7a8b74157a5..117b56242ee2 100644 --- a/drivers/scsi/qla2xxx/qla_isr.c +++ b/drivers/scsi/qla2xxx/qla_isr.c | |||
@@ -356,10 +356,7 @@ qla2x00_async_event(scsi_qla_host_t *ha, uint32_t mbx) | |||
356 | "ISP System Error - mbx1=%xh mbx2=%xh mbx3=%xh.\n", | 356 | "ISP System Error - mbx1=%xh mbx2=%xh mbx3=%xh.\n", |
357 | mb[1], mb[2], mb[3]); | 357 | mb[1], mb[2], mb[3]); |
358 | 358 | ||
359 | if (IS_QLA2100(ha) || IS_QLA2200(ha)) | 359 | ha->isp_ops.fw_dump(ha, 1); |
360 | qla2100_fw_dump(ha, 1); | ||
361 | else | ||
362 | qla2300_fw_dump(ha, 1); | ||
363 | 360 | ||
364 | if (mb[1] == 0) { | 361 | if (mb[1] == 0) { |
365 | qla_printk(KERN_INFO, ha, | 362 | qla_printk(KERN_INFO, ha, |