Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Skip intel_crt_init for Dell XPS 8700

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>

authored by

Giacomo Comes and committed by
Daniel Vetter
10b6ee4a 09c87db8

+8
+8
drivers/gpu/drm/i915/intel_crt.c
··· 804 804 DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"), 805 805 }, 806 806 }, 807 + { 808 + .callback = intel_no_crt_dmi_callback, 809 + .ident = "DELL XPS 8700", 810 + .matches = { 811 + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 812 + DMI_MATCH(DMI_PRODUCT_NAME, "XPS 8700"), 813 + }, 814 + }, 807 815 { } 808 816 }; 809 817