summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJian Jun Chen <jian.jun.chen@intel.com>2017-07-19 13:16:56 +0800
committerZhenyu Wang <zhenyuw@linux.intel.com>2017-07-25 12:39:41 +0800
commit26a201a2ba82a801973ce29e1004b64742e81e7e (patch)
treea98b863350d01cd020adf178936cd7cd2f33a9cb
parentf43aa31fe7dc43b808ec619b0d407180cd3725c0 (diff)
drm/i915/gvt: Extend KBL platform support in GVT-g
Extend KBL platform support in GVT-g. Validation tests are done on KBL server and KBL NUC. Both show the same quality. Signed-off-by: Jian Jun Chen <jian.jun.chen@intel.com> Cc: Zhenyu Wang <zhenyuw@linux.intel.com> Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
-rw-r--r--drivers/gpu/drm/i915/intel_gvt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_gvt.c b/drivers/gpu/drm/i915/intel_gvt.c
index 52d5b82790d9..c17ed0e62b67 100644
--- a/drivers/gpu/drm/i915/intel_gvt.c
+++ b/drivers/gpu/drm/i915/intel_gvt.c
@@ -45,7 +45,7 @@ static bool is_supported_device(struct drm_i915_private *dev_priv)
return true;
if (IS_SKYLAKE(dev_priv))
return true;
- if (IS_KABYLAKE(dev_priv) && INTEL_DEVID(dev_priv) == 0x591D)
+ if (IS_KABYLAKE(dev_priv))
return true;
return false;
}