diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2005-07-06 13:30:57 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-07-14 10:56:39 -0400 |
commit | 1c7c63574ff3e568ca374e9f05e30b8d7d64273e (patch) | |
tree | cb82036b580bb57eb01e897b877e1da50259e2a0 /drivers/scsi/qla2xxx/qla_os.c | |
parent | 8c958a99d6a903ce4ffaa6780f3425a8567db9e6 (diff) |
[SCSI] qla2xxx: Add MBX command routines for ISP24xx support.
Add MBX command routines for ISP24xx support.
Generalize several routines [qla2x00_load_ram_ext(),
qla2x00_execute_fw(), qla2x00_verify_checksum()] to handle
larger addressing space.
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_os.c')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_os.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c index 328cd26e33b9..a325b66ea41c 100644 --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c | |||
@@ -2002,7 +2002,10 @@ qla2x00_do_dpc(void *data) | |||
2002 | if (fcport->flags & | 2002 | if (fcport->flags & |
2003 | FCF_TAPE_PRESENT) | 2003 | FCF_TAPE_PRESENT) |
2004 | ha->isp_ops.fabric_logout( | 2004 | ha->isp_ops.fabric_logout( |
2005 | ha, fcport->loop_id); | 2005 | ha, fcport->loop_id, |
2006 | fcport->d_id.b.domain, | ||
2007 | fcport->d_id.b.area, | ||
2008 | fcport->d_id.b.al_pa); | ||
2006 | status = qla2x00_fabric_login( | 2009 | status = qla2x00_fabric_login( |
2007 | ha, fcport, &next_loopid); | 2010 | ha, fcport, &next_loopid); |
2008 | } else | 2011 | } else |