net/hns3: fix code style
authorHongbo Zheng <zhenghongbo3@huawei.com>
Wed, 31 Mar 2021 10:01:44 +0000 (18:01 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 8 Apr 2021 16:57:09 +0000 (18:57 +0200)
Add one space before the left brace to solve the static warning.

Fixes: 63e05f19b82b ("net/hns3: support Rx descriptor status query")

Signed-off-by: Hongbo Zheng <zhenghongbo3@huawei.com>
Signed-off-by: Min Hu (Connor) <humin29@huawei.com>
drivers/net/hns3/hns3_rxtx.c

index 2b80ba4..ebf7c82 100644 (file)
@@ -4477,7 +4477,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 {