linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] scsi: lpfc: style: Simplify bool comparison
@ 2021-01-12  8:24 YANG LI
  2021-01-12 18:00 ` James Smart
  2021-01-15  4:08 ` Martin K. Petersen
  0 siblings, 2 replies; 3+ messages in thread
From: YANG LI @ 2021-01-12  8:24 UTC (permalink / raw)
  To: jejb
  Cc: martin.petersen, james.smart, dick.kennedy, linux-scsi,
	linux-kernel, YANG LI

Fix the following coccicheck warning:
./drivers/scsi/lpfc/lpfc_bsg.c:5392:5-29: WARNING: Comparison to bool

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: YANG LI <abaci-bugfix@linux.alibaba.com>
---
 drivers/scsi/lpfc/lpfc_bsg.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/lpfc/lpfc_bsg.c b/drivers/scsi/lpfc/lpfc_bsg.c
index eed6ea5..b974d39 100644
--- a/drivers/scsi/lpfc/lpfc_bsg.c
+++ b/drivers/scsi/lpfc/lpfc_bsg.c
@@ -5376,9 +5376,9 @@ static int lpfc_bsg_check_cmd_access(struct lpfc_hba *phba,
 
 	ras_fwlog = &phba->ras_fwlog;
 
-	if (ras_fwlog->ras_hwsupport == false)
+	if (!ras_fwlog->ras_hwsupport)
 		return -EACCES;
-	else if (ras_fwlog->ras_enabled == false)
+	else if (!ras_fwlog->ras_enabled)
 		return -EPERM;
 	else
 		return 0;
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] scsi: lpfc: style: Simplify bool comparison
  2021-01-12  8:24 [PATCH] scsi: lpfc: style: Simplify bool comparison YANG LI
@ 2021-01-12 18:00 ` James Smart
  2021-01-15  4:08 ` Martin K. Petersen
  1 sibling, 0 replies; 3+ messages in thread
From: James Smart @ 2021-01-12 18:00 UTC (permalink / raw)
  To: YANG LI, jejb; +Cc: martin.petersen, dick.kennedy, linux-scsi, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 435 bytes --]



On 1/12/2021 12:24 AM, YANG LI wrote:
> Fix the following coccicheck warning:
> ./drivers/scsi/lpfc/lpfc_bsg.c:5392:5-29: WARNING: Comparison to bool
>
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: YANG LI <abaci-bugfix@linux.alibaba.com>
> ---
>   drivers/scsi/lpfc/lpfc_bsg.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
>

Reviewed-by:  James Smart <james.smart@broadcom.com>

-- james


[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4163 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] scsi: lpfc: style: Simplify bool comparison
  2021-01-12  8:24 [PATCH] scsi: lpfc: style: Simplify bool comparison YANG LI
  2021-01-12 18:00 ` James Smart
@ 2021-01-15  4:08 ` Martin K. Petersen
  1 sibling, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2021-01-15  4:08 UTC (permalink / raw)
  To: jejb, YANG LI
  Cc: Martin K . Petersen, dick.kennedy, linux-scsi, james.smart, linux-kernel

On Tue, 12 Jan 2021 16:24:53 +0800, YANG LI wrote:

> Fix the following coccicheck warning:
> ./drivers/scsi/lpfc/lpfc_bsg.c:5392:5-29: WARNING: Comparison to bool

Applied to 5.12/scsi-queue, thanks!

[1/1] scsi: lpfc: style: Simplify bool comparison
      https://git.kernel.org/mkp/scsi/c/af0c94afc0c4

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-01-15  4:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-12  8:24 [PATCH] scsi: lpfc: style: Simplify bool comparison YANG LI
2021-01-12 18:00 ` James Smart
2021-01-15  4:08 ` Martin K. Petersen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).