brintos

brintos / linux-shallow public Read only

0
0
Text · 364 B · 3222907 Raw
22 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2022 Intel Corporation4 */5 6#ifndef _INTEL_HWCONFIG_H_7#define _INTEL_HWCONFIG_H_8 9#include <linux/types.h>10 11struct intel_gt;12 13struct intel_hwconfig {14	u32 size;15	void *ptr;16};17 18int intel_gt_init_hwconfig(struct intel_gt *gt);19void intel_gt_fini_hwconfig(struct intel_gt *gt);20 21#endif /* _INTEL_HWCONFIG_H_ */22