drm/i915/skl: Don't create a VGA connector on Skylake
authorDamien Lespiau <damien.lespiau@intel.com>
Tue, 3 Dec 2013 13:56:23 +0000 (13:56 +0000)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 24 Sep 2014 12:39:46 +0000 (14:39 +0200)
v2: Rebase on top of the intel_crt_present() addition
v3: Fix rebase error (we were patching the wrong function)

Reviewed-by: Thomas Wood <thomas.wood@intel.com>
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_display.c

index 65f4ff668208c25f501090d8017f487836375c68..3c3656cd797d7e262a75f2e5b0f1a467eb84d85b 100644 (file)
@@ -12322,6 +12322,9 @@ static bool intel_crt_present(struct drm_device *dev)
 {
        struct drm_i915_private *dev_priv = dev->dev_private;
 
+       if (INTEL_INFO(dev)->gen >= 9)
+               return false;
+
        if (IS_ULT(dev))
                return false;
 
This page took 0.030066 seconds and 5 git commands to generate.