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