intel_hwconfig.h (364B)
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2022 Intel Corporation 4 */ 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_ */