diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2008-07-11 01:56:02 +0200 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-07-26 21:14:46 +0200 |
commit | 6d0525292ad13f17abcd4a21e488d5b667e90668 (patch) | |
tree | 3784374551588ae4942476d345ce1e9b0f3169d4 | |
parent | [SCSI] qla2xxx: Verify the RISC is not in ROM code if firmware-load is disabled. (diff) | |
download | linux-6d0525292ad13f17abcd4a21e488d5b667e90668.tar.xz linux-6d0525292ad13f17abcd4a21e488d5b667e90668.zip |
[SCSI] qla2xxx: Don't hardcode fw_transfer_size for ISP2[45]xx parts.
Use the full buffer size available, as there's no reason to limit
the firwmare-image load-segment size for these parts.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
-rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index fd3ff5e57133..44c0117c5d2b 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c @@ -729,7 +729,7 @@ qla24xx_chip_diag(scsi_qla_host_t *ha) /* Perform RISC reset. */ qla24xx_reset_risc(ha); - ha->fw_transfer_size = REQUEST_ENTRY_SIZE * 1024; + ha->fw_transfer_size = REQUEST_ENTRY_SIZE * ha->request_q_length; rval = qla2x00_mbx_reg_test(ha); if (rval) { |