All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scsi: csiostor: simplify macro CSIO_VALID_WWN
@ 2020-01-13 13:12 Chen Zhou
  0 siblings, 0 replies; only message in thread
From: Chen Zhou @ 2020-01-13 13:12 UTC (permalink / raw)
  To: jejb, martin.petersen; +Cc: linux-scsi, linux-kernel, chenzhou10

The conversion to bool is in macro CSIO_VALID_WWN not needed, remove it.

Signed-off-by: Chen Zhou <chenzhou10@huawei.com>
---
 drivers/scsi/csiostor/csio_defs.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/csiostor/csio_defs.h b/drivers/scsi/csiostor/csio_defs.h
index c38017b..c5049e3 100644
--- a/drivers/scsi/csiostor/csio_defs.h
+++ b/drivers/scsi/csiostor/csio_defs.h
@@ -46,7 +46,7 @@
 #define CSIO_INVALID_IDX		0xFFFFFFFF
 #define CSIO_INC_STATS(elem, val)	((elem)->stats.val++)
 #define CSIO_DEC_STATS(elem, val)	((elem)->stats.val--)
-#define CSIO_VALID_WWN(__n)		((*__n >> 4) == 0x5 ? true : false)
+#define CSIO_VALID_WWN(__n)		((*__n >> 4) == 0x5)
 #define CSIO_DID_MASK			0xFFFFFF
 #define CSIO_WORD_TO_BYTE		4
 
-- 
2.7.4


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-01-13 13:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-13 13:12 [PATCH] scsi: csiostor: simplify macro CSIO_VALID_WWN Chen Zhou

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.