[PATCH v2 02/11] net/hns3: remove redundant parentheses
Min Hu (Connor)
humin29 at huawei.com
Wed Jun 1 05:52:42 CEST 2022
From: Huisong Li <lihuisong at huawei.com>
Remove redundant parentheses.
Signed-off-by: Huisong Li <lihuisong at huawei.com>
Signed-off-by: Min Hu (Connor) <humin29 at huawei.com>
---
drivers/net/hns3/hns3_rxtx.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/hns3/hns3_rxtx.c b/drivers/net/hns3/hns3_rxtx.c
index 1c9648bd52..4cba4fd13e 100644
--- a/drivers/net/hns3/hns3_rxtx.c
+++ b/drivers/net/hns3/hns3_rxtx.c
@@ -167,7 +167,7 @@ hns3_fake_rx_queue_release(struct hns3_rx_queue *queue)
}
/* free fake rx queue arrays */
- if (idx == (hw->fkq_data.nb_fake_rx_queues - 1)) {
+ if (idx == hw->fkq_data.nb_fake_rx_queues - 1) {
hw->fkq_data.nb_fake_rx_queues = 0;
rte_free(hw->fkq_data.rx_queues);
hw->fkq_data.rx_queues = NULL;
@@ -194,7 +194,7 @@ hns3_fake_tx_queue_release(struct hns3_tx_queue *queue)
}
/* free fake tx queue arrays */
- if (idx == (hw->fkq_data.nb_fake_tx_queues - 1)) {
+ if (idx == hw->fkq_data.nb_fake_tx_queues - 1) {
hw->fkq_data.nb_fake_tx_queues = 0;
rte_free(hw->fkq_data.tx_queues);
hw->fkq_data.tx_queues = NULL;
--
2.33.0
More information about the dev
mailing list