aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/scsi/qla2xxx/qla_mbx.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/scsi/qla2xxx/qla_mbx.c b/drivers/scsi/qla2xxx/qla_mbx.c
index 6009b0c69488..d0413d56887c 100644
--- a/drivers/scsi/qla2xxx/qla_mbx.c
+++ b/drivers/scsi/qla2xxx/qla_mbx.c
@@ -3825,8 +3825,6 @@ qla2x00_loopback_test(scsi_qla_host_t *vha, struct msg_echo_lb *mreq,
3825 3825
3826 /* Copy mailbox information */ 3826 /* Copy mailbox information */
3827 memcpy( mresp, mcp->mb, 64); 3827 memcpy( mresp, mcp->mb, 64);
3828 mresp[3] = mcp->mb[18];
3829 mresp[4] = mcp->mb[19];
3830 return rval; 3828 return rval;
3831} 3829}
3832 3830
@@ -3887,9 +3885,10 @@ qla2x00_echo_test(scsi_qla_host_t *vha, struct msg_echo_lb *mreq,
3887 } 3885 }
3888 3886
3889 /* Copy mailbox information */ 3887 /* Copy mailbox information */
3890 memcpy( mresp, mcp->mb, 32); 3888 memcpy(mresp, mcp->mb, 64);
3891 return rval; 3889 return rval;
3892} 3890}
3891
3893int 3892int
3894qla84xx_reset_chip(scsi_qla_host_t *ha, uint16_t enable_diagnostic) 3893qla84xx_reset_chip(scsi_qla_host_t *ha, uint16_t enable_diagnostic)
3895{ 3894{