Skip intel_crt_init for Dell XPS 8700
authorGiacomo Comes <comes@naic.edu>
Thu, 3 Apr 2014 18:13:55 +0000 (14:13 -0400)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Fri, 4 Apr 2014 07:30:53 +0000 (09:30 +0200)
The Dell XPS 8700 has a onboard Display port and HDMI port and no VGA port.
The call intel_crt_init freeze the machine, so skip such call.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=73559
Signed-off-by: Giacomo Comes <comes at naic.edu>
Cc: stable@vger.kernel.org
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_crt.c

index 4b4e8f0f9621634d384e667641a6b3a84f4f2a9c..aa5a3dc43342a1d484a5419d5fa8388049348636 100644 (file)
@@ -804,6 +804,14 @@ static const struct dmi_system_id intel_no_crt[] = {
                        DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"),
                },
        },
+       {
+               .callback = intel_no_crt_dmi_callback,
+               .ident = "DELL XPS 8700",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "XPS 8700"),
+               },
+       },
        { }
 };