Maarten Lankhorst | 44e6949 | 2023-08-17 16:30:41 -0400 | [diff] [blame] | 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; |
Maarten Lankhorst | 44e6949 | 2023-08-17 16:30:41 -0400 | [diff] [blame] | 12 | |
Maarten Lankhorst | 44e6949 | 2023-08-17 16:30:41 -0400 | [diff] [blame] | 13 | static inline bool intel_vgpu_active(struct drm_i915_private *i915) |
| 14 | { |
| 15 | return false; |
| 16 | } |
Maarten Lankhorst | 44e6949 | 2023-08-17 16:30:41 -0400 | [diff] [blame] | 17 | |
| 18 | #endif /* _I915_VGPU_H_ */ |