aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/gpu/drm/i915/gvt/gvt.c
diff options
context:
space:
mode:
authorHang Yuan <hang.yuan@linux.intel.com>2018-07-09 18:24:10 +0800
committerZhenyu Wang <zhenyuw@linux.intel.com>2018-07-10 11:13:11 +0800
commit279ce5d117078ee8ea40c40199399889981fd808 (patch)
treeff5d4887057cdba6b8459f57451e31c5eeedd78c /drivers/gpu/drm/i915/gvt/gvt.c
parentdrm/i915/gvt: Handle EDP_PSR_IMR and EDP_PSR_IIR for BXT. (diff)
downloadwireguard-linux-279ce5d117078ee8ea40c40199399889981fd808.tar.xz
wireguard-linux-279ce5d117078ee8ea40c40199399889981fd808.zip
drm/i915/gvt: declare gvt as i915's soft dependency
This helps initramfs builder and other tools to know the full dependencies of i915 and have gvt module loaded with i915. v2: add condition and change to pre-dependency (Chris) v3: move declaration to gvt.c. (Chris) v4: remove xengt (Zhenyu) Signed-off-by: Hang Yuan <hang.yuan@linux.intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Diffstat (limited to 'drivers/gpu/drm/i915/gvt/gvt.c')
-rw-r--r--drivers/gpu/drm/i915/gvt/gvt.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/gvt/gvt.c b/drivers/gpu/drm/i915/gvt/gvt.c
index 4e65266e7b95..712f9d14e720 100644
--- a/drivers/gpu/drm/i915/gvt/gvt.c
+++ b/drivers/gpu/drm/i915/gvt/gvt.c
@@ -468,3 +468,7 @@ out_clean_idr:
kfree(gvt);
return ret;
}
+
+#if IS_ENABLED(CONFIG_DRM_I915_GVT_KVMGT)
+MODULE_SOFTDEP("pre: kvmgt");
+#endif