429c394417
Add traffic manager support. Signed-off-by: Tomasz Duszynski <tdu@semihalf.com> Signed-off-by: Natalie Samsonov <nsamsono@marvell.com> Reviewed-by: Liron Himi <lironh@marvell.com>
16 lines
331 B
C
16 lines
331 B
C
/* 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_ */
|