1 /* SPDX-License-Identifier: BSD-3-Clause
10 struct dpaa2_tm_shaper_profile {
11 LIST_ENTRY(dpaa2_tm_shaper_profile) next;
14 struct rte_tm_shaper_params params;
17 struct dpaa2_tm_node {
18 LIST_ENTRY(dpaa2_tm_node) next;
22 struct dpaa2_tm_node *parent;
23 struct dpaa2_tm_shaper_profile *profile;
29 int dpaa2_tm_init(struct rte_eth_dev *dev);
30 void dpaa2_tm_deinit(struct rte_eth_dev *dev);
32 #endif /* _DPAA2_TM_H_ */