[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1610357368-62866-1-git-send-email-abaci-bugfix@linux.alibaba.com>
Date: Mon, 11 Jan 2021 17:29:28 +0800
From: YANG LI <abaci-bugfix@...ux.alibaba.com>
To: jejb@...ux.ibm.com
Cc: martin.petersen@...cle.com, skashyap@...vell.com,
jhasan@...vell.com, GR-QLogic-Storage-Upstream@...vell.com,
linux@...linux.org.uk, linux-scsi@...r.kernel.org,
linux-kernel@...r.kernel.org, netdev@...r.kernel.org,
YANG LI <abaci-bugfix@...ux.alibaba.com>
Subject: [PATCH] scsi: qedf: style: Simplify bool comparison
Fix the following coccicheck warning:
./drivers/scsi/qedf/qedf_main.c:3716:5-31: WARNING: Comparison to bool
Signed-off-by: YANG LI <abaci-bugfix@...ux.alibaba.com>
Reported-by: Abaci Robot<abaci@...ux.alibaba.com>
---
drivers/scsi/qedf/qedf_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/scsi/qedf/qedf_main.c b/drivers/scsi/qedf/qedf_main.c
index 46d185c..cec27f2 100644
--- a/drivers/scsi/qedf/qedf_main.c
+++ b/drivers/scsi/qedf/qedf_main.c
@@ -3713,7 +3713,7 @@ static void __qedf_remove(struct pci_dev *pdev, int mode)
else
fc_fabric_logoff(qedf->lport);
- if (qedf_wait_for_upload(qedf) == false)
+ if (!qedf_wait_for_upload(qedf))
QEDF_ERR(&qedf->dbg_ctx, "Could not upload all sessions.\n");
#ifdef CONFIG_DEBUG_FS
--
1.8.3.1
Powered by blists - more mailing lists