[dpdk-dev] [PATCH 10/10] net/hns3: fix code style static warning
Min Hu (Connor)
humin29 at huawei.com
Wed Mar 31 12:01:44 CEST 2021
From: Hongbo Zheng <zhenghongbo3 at huawei.com>
Add one space before the left brace to solve the static warning.
Fixes: 4311f7372881 ("net/hns3: support query Rx descriptor status")
Signed-off-by: Hongbo Zheng <zhenghongbo3 at huawei.com>
Signed-off-by: Min Hu (Connor) <humin29 at huawei.com>
---
drivers/net/hns3/hns3_rxtx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/hns3/hns3_rxtx.c b/drivers/net/hns3/hns3_rxtx.c
index ce5d852..80f7007 100644
--- a/drivers/net/hns3/hns3_rxtx.c
+++ b/drivers/net/hns3/hns3_rxtx.c
@@ -4438,7 +4438,7 @@ hns3_dev_rx_descriptor_status(void *rx_queue, uint16_t offset)
if (offset >= rxq->nb_rx_desc - rxq->rx_free_hold)
return RTE_ETH_RX_DESC_UNAVAIL;
} else if (dev->rx_pkt_burst == hns3_recv_pkts_vec ||
- dev->rx_pkt_burst == hns3_recv_pkts_vec_sve){
+ dev->rx_pkt_burst == hns3_recv_pkts_vec_sve) {
if (offset >= rxq->nb_rx_desc - rxq->rx_rearm_nb)
return RTE_ETH_RX_DESC_UNAVAIL;
} else {
--
2.7.4
More information about the dev
mailing list