xref: /dpdk/lib/ethdev/ethdev_driver.c (revision a41f593f1bce27cd94eae0e85a8085c592b14b30)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2022 Intel Corporation
3  */
4 
5 #include "ethdev_driver.h"
6 
7 uint16_t
8 rte_eth_pkt_burst_dummy(void *queue __rte_unused,
9 		struct rte_mbuf **pkts __rte_unused,
10 		uint16_t nb_pkts __rte_unused)
11 {
12 	return 0;
13 }
14