scsi: qla2xxx: Assign boolean values to a bool variable
authorJiapeng Zhong <abaci-bugfix@linux.alibaba.com>
Wed, 20 Jan 2021 07:31:59 +0000 (15:31 +0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Sat, 23 Jan 2021 03:02:47 +0000 (22:02 -0500)
Fix the following coccicheck warnings:

./drivers/scsi/qla2xxx/qla_isr.c:780:2-18: WARNING: Assignment
of 0/1 to bool variable.

Link: https://lore.kernel.org/r/1611127919-56551-1-git-send-email-abaci-bugfix@linux.alibaba.com
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Zhong <abaci-bugfix@linux.alibaba.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/qla2xxx/qla_isr.c

index 5ceb45dfd6c7e64018c8cde5d4ddf95607ca50bd..5e188375c8713a226367b7c5e8c4c20d63d92479 100644 (file)
@@ -762,7 +762,7 @@ static void
 qla27xx_handle_8200_aen(scsi_qla_host_t *vha, uint16_t *mb)
 {
        struct qla_hw_data *ha = vha->hw;
-       bool reset_isp_needed = 0;
+       bool reset_isp_needed = false;
 
        ql_log(ql_log_warn, vha, 0x02f0,
               "MPI Heartbeat stop. MPI reset is%s needed. "
@@ -778,7 +778,7 @@ qla27xx_handle_8200_aen(scsi_qla_host_t *vha, uint16_t *mb)
 
        if (ql2xfulldump_on_mpifail) {
                ha->isp_ops->fw_dump(vha);
-               reset_isp_needed = 1;
+               reset_isp_needed = true;
        }
 
        ha->isp_ops->mpi_fw_dump(vha, 1);