xref: /dpdk/drivers/net/ice/base/ice_mk_grp.h (revision 90bbd7d9)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2021 Intel Corporation
3  */
4 
5 #ifndef _ICE_MK_GRP_H_
6 #define _ICE_MK_GRP_H_
7 
8 struct ice_mk_grp_item {
9 	int idx;
10 	u8 markers[8];
11 };
12 
13 void ice_mk_grp_dump(struct ice_hw *hw, struct ice_mk_grp_item *item);
14 struct ice_mk_grp_item *ice_mk_grp_table_get(struct ice_hw *hw);
15 #endif /* _ICE_MK_GRP_H_ */
16