xref: /linux/drivers/gpu/drm/xe/compat-i915-headers/i915_vgpu.h (revision e3b2949e3fa2fd8c19cd5fbb0424d38f70a70e9c)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2023 Intel Corporation
4  */
5 
6 #ifndef _I915_VGPU_H_
7 #define _I915_VGPU_H_
8 
9 #include <linux/types.h>
10 
11 struct drm_i915_private;
12 
13 static inline bool intel_vgpu_active(struct drm_i915_private *i915)
14 {
15 	return false;
16 }
17 
18 #endif /* _I915_VGPU_H_ */
19