This patch fixes login_retry login for ADISC command.
when login_retry count reaches 0, further attempt to send ADISC command
is ignored by the code. Remove this redundant login_retry count check
from qla24xx_fcport_handle_login()
[mkp: fix typo]
Signed-off-by: Quinn Tran <quinn.tran@cavium.com>
Signed-off-by: Himanshu Madhani <himanshu.madhani@cavium.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
            fcport->login_gen, fcport->login_retry,
            fcport->loop_id, fcport->scan_state);
 
-       if (fcport->login_retry == 0)
-               return 0;
-
        if (fcport->scan_state != QLA_FCPORT_FOUND)
                return 0;
 
                return 0;
        }
 
-       fcport->login_retry--;
+       if (fcport->login_retry > 0)
+               fcport->login_retry--;
 
        switch (fcport->disc_state) {
        case DSC_DELETED: