]> Git Repo - linux.git/blob - drivers/gpu/drm/i915/gt/intel_hwconfig.h
Merge tag 'cxl-for-6.0' of git://git.kernel.org/pub/scm/linux/kernel/git/cxl/cxl
[linux.git] / drivers / gpu / drm / i915 / gt / intel_hwconfig.h
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_ */
This page took 0.037118 seconds and 4 git commands to generate.