blob: 4931c7198f13f095765206dbb94f8e81003c9adf [file] [log] [blame]
Maarten Lankhorst44e69492023-08-17 16:30:41 -04001/* 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
11struct drm_i915_private;
Maarten Lankhorst44e69492023-08-17 16:30:41 -040012
Maarten Lankhorst44e69492023-08-17 16:30:41 -040013static inline bool intel_vgpu_active(struct drm_i915_private *i915)
14{
15 return false;
16}
Maarten Lankhorst44e69492023-08-17 16:30:41 -040017
18#endif /* _I915_VGPU_H_ */