Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 /*
0003  * Copyright © 2022 Intel Corporation
0004  */
0005 
0006 #ifndef _INTEL_HWCONFIG_H_
0007 #define _INTEL_HWCONFIG_H_
0008 
0009 #include <linux/types.h>
0010 
0011 struct intel_gt;
0012 
0013 struct intel_hwconfig {
0014     u32 size;
0015     void *ptr;
0016 };
0017 
0018 int intel_gt_init_hwconfig(struct intel_gt *gt);
0019 void intel_gt_fini_hwconfig(struct intel_gt *gt);
0020 
0021 #endif /* _INTEL_HWCONFIG_H_ */