1
0
Fork 0

[SCSI] qla2xxx: Fixed zero test on new_config in qla2x00_process_loopback().

Fixed the incorrect zero test on array new_config[].

Signed-off-by: Joe Carnuccio <joe.carnuccio@qlogic.com>
Signed-off-by: Madhuranath Iyengar <Madhu.Iyengar@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
hifive-unleashed-5.1
Joe Carnuccio 2010-12-21 16:00:17 -08:00 committed by James Bottomley
parent ff8073fffc
commit 4052bd5723
1 changed files with 1 additions and 1 deletions

View File

@ -753,7 +753,7 @@ qla2x00_process_loopback(struct fc_bsg_job *bsg_job)
command_sent = INT_DEF_LB_LOOPBACK_CMD;
rval = qla2x00_loopback_test(vha, &elreq, response);
if (new_config[1]) {
if (new_config[0]) {
/* Revert back to original port config
* Also clear internal loopback
*/