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 11 struct intel_gt; 12 13 struct intel_hwconfig { 14 u32 size; 15 void *ptr; 16 }; 17 18 int intel_gt_init_hwconfig(struct intel_gt *gt); 19 void intel_gt_fini_hwconfig(struct intel_gt *gt); 20 21 #endif /* _INTEL_HWCONFIG_H_ */ 22