mirror of https://github.com/F-Stack/f-stack.git
16 lines
356 B
C
16 lines
356 B
C
|
/* SPDX-License-Identifier: BSD-3-Clause
|
||
|
* Copyright(c) 2001-2021 Intel Corporation
|
||
|
*/
|
||
|
|
||
|
#ifndef _ICE_MK_GRP_H_
|
||
|
#define _ICE_MK_GRP_H_
|
||
|
|
||
|
struct ice_mk_grp_item {
|
||
|
int idx;
|
||
|
u8 markers[8];
|
||
|
};
|
||
|
|
||
|
void ice_mk_grp_dump(struct ice_hw *hw, struct ice_mk_grp_item *item);
|
||
|
struct ice_mk_grp_item *ice_mk_grp_table_get(struct ice_hw *hw);
|
||
|
#endif /* _ICE_MK_GRP_H_ */
|