blob: 9d81ede2bf5c82dbfdc2ded789d9fbb2005acc92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2018 Marvell International Ltd.
* Copyright(c) 2018 Semihalf.
* All rights reserved.
*/
#ifndef _MRVL_TM_H_
#define _MRVL_TM_H_
#include "mrvl_ethdev.h"
int mrvl_tm_init(struct rte_eth_dev *dev);
void mrvl_tm_deinit(struct rte_eth_dev *dev);
#endif /* _MRVL_TM_H_ */
|