]> git.droids-corp.org - dpdk.git/blobdiff - drivers/net/cxgbe/cxgbe_ethdev.c
ethdev: add return value to stats get dev op
[dpdk.git] / drivers / net / cxgbe / cxgbe_ethdev.c
index 7bca45614b029e4af9fc53c102ae07e5883c8904..02b4f629adbf9902067f4432479bb0b2f6ade8b3 100644 (file)
@@ -647,7 +647,7 @@ static void cxgbe_dev_rx_queue_release(void *q)
 /*
  * Get port statistics.
  */
-static void cxgbe_dev_stats_get(struct rte_eth_dev *eth_dev,
+static int cxgbe_dev_stats_get(struct rte_eth_dev *eth_dev,
                                struct rte_eth_stats *eth_stats)
 {
        struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
@@ -690,6 +690,7 @@ static void cxgbe_dev_stats_get(struct rte_eth_dev *eth_dev,
                eth_stats->q_obytes[i] = txq->stats.tx_bytes;
                eth_stats->q_errors[i] = txq->stats.mapping_err;
        }
+       return 0;
 }
 
 /*