scsi: qla4xxx: Remove redundant continue statement
authorColin Ian King <colin.king@canonical.com>
Thu, 17 Jun 2021 07:37:43 +0000 (08:37 +0100)
committerMartin K. Petersen <martin.petersen@oracle.com>
Sat, 19 Jun 2021 03:01:03 +0000 (23:01 -0400)
The continue statement at the end of a for-loop has no effect, remove it.

Link: https://lore.kernel.org/r/20210617073743.151008-1-colin.king@canonical.com
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Addresses-Coverity: ("Continue has no effect")

drivers/scsi/qla4xxx/ql4_os.c

index 0e7a7e8..6ee7ea4 100644 (file)
@@ -815,8 +815,6 @@ static int qla4xxx_get_chap_list(struct Scsi_Host *shost, uint16_t chap_tbl_idx,
                valid_chap_entries++;
                if (valid_chap_entries == *num_entries)
                        break;
-               else
-                       continue;
        }
        mutex_unlock(&ha->chap_sem);