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