linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] RDMA/irdma: fix boolconv.cocci warnings
@ 2020-04-15 14:15 Julia Lawall
  0 siblings, 0 replies; only message in thread
From: Julia Lawall @ 2020-04-15 14:15 UTC (permalink / raw)
  To: Shiraz Saleem
  Cc: Jeff Kirsher, Doug Ledford, Jason Gunthorpe, Mustafa Ismail,
	linux-rdma, linux-kernel, Intel Wired LAN, kbuild-all

From: kbuild test robot <lkp@intel.com>

Remove unneeded conversion to bool

Generated by: scripts/coccinelle/misc/boolconv.cocci

Fixes: f473122f41f6 ("RDMA/irdma: Add irdma Kconfig/Makefile and remove i40iw")
CC: Shiraz Saleem <shiraz.saleem@intel.com>
Signed-off-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Julia Lawall <julia.lawall@inria.fr>
---

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git rdma
head:   4d75d9adac8df983bc733b92711683a7cd7ddd40
commit: f473122f41f69394e29a834fbfcd569dcdd1d879 [24/25] RDMA/irdma: Add irdma Kconfig/Makefile and remove i40iw
:::::: branch date: 2 days ago
:::::: commit date: 2 days ago


 irdma_if.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/infiniband/hw/irdma/irdma_if.c
+++ b/drivers/infiniband/hw/irdma/irdma_if.c
@@ -135,7 +135,7 @@ static void irdma_event_handler(struct i

 		l2params.tc_changed = true;
 		dev_dbg(rfdev_to_dev(&iwdev->rf->sc_dev), "CLNT: TC Change\n");
-		iwdev->dcb = event->info.port_qos.num_tc > 1 ? true : false;
+		iwdev->dcb = event->info.port_qos.num_tc > 1;

 		for (i = 0; i < IIDC_MAX_USER_PRIORITY; ++i)
 			l2params.up2tc[i] = event->info.port_qos.up2tc[i];

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

only message in thread, other threads:[~2020-04-15 14:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-15 14:15 [PATCH] RDMA/irdma: fix boolconv.cocci warnings Julia Lawall

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).