aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVikas Chaudhary <[email protected]>2010-07-30 14:26:08 +0530
committerJames Bottomley <[email protected]>2010-08-06 11:56:52 -0500
commitb173a132cbf0a4a48b2f341716e20a6d8b24957e (patch)
tree5558e747f02ae1322cb6c1fdad90ea4ced636aed
parent3013cea83ef3532e49b973a0bc9b3562f56871c6 (diff)
[SCSI] qla4xxx: Use the correct request queue.
Signed-off-by: Vikas Chaudhary <[email protected]> Signed-off-by: Ravi Anand <[email protected]> Reviewed-by: Mike Christie <[email protected]> Signed-off-by: James Bottomley <[email protected]>
-rw-r--r--drivers/scsi/qla4xxx/ql4_iocb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla4xxx/ql4_iocb.c b/drivers/scsi/qla4xxx/ql4_iocb.c
index f89973deac5b..4ef9ba112ee8 100644
--- a/drivers/scsi/qla4xxx/ql4_iocb.c
+++ b/drivers/scsi/qla4xxx/ql4_iocb.c
@@ -19,7 +19,7 @@ qla4xxx_space_in_req_ring(struct scsi_qla_host *ha, uint16_t req_cnt)
/* Calculate number of free request entries. */
if ((req_cnt + 2) >= ha->req_q_count) {
- cnt = (uint16_t) le32_to_cpu(ha->shadow_regs->req_q_out);
+ cnt = (uint16_t) ha->isp_ops->rd_shdw_req_q_out(ha);
if (ha->request_in < cnt)
ha->req_q_count = cnt - ha->request_in;
else