19 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2023 Intel Corporation4 */5 6#ifndef _I915_VGPU_H_7#define _I915_VGPU_H_8 9#include <linux/types.h>10 11struct drm_i915_private;12 13static inline bool intel_vgpu_active(struct drm_i915_private *i915)14{15 return false;16}17 18#endif /* _I915_VGPU_H_ */19