Commit 93e6044b authored by Jason Yan's avatar Jason Yan Committed by David S. Miller
Browse files

net: qede: Use true for bool variable in qede_init_fp()



Fix the following coccicheck warning:

drivers/net/ethernet/qlogic/qede/qede_main.c:1717:5-19: WARNING:
Assignment of 0/1 to bool variable

Signed-off-by: default avatarJason Yan <yanaijie@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 66b63a60
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1714,7 +1714,7 @@ static void qede_init_fp(struct qede_dev *edev)
				txq->ndev_txq_id = ndev_tx_id;

				if (edev->dev_info.is_legacy)
					txq->is_legacy = 1;
					txq->is_legacy = true;
				txq->dev = &edev->pdev->dev;
			}