aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/intel_lvds.c
diff options
context:
space:
mode:
authorChristian Lamparter <chunkeey@googlemail.com>2013-04-03 08:34:11 -0400
committerDaniel Vetter <daniel.vetter@ffwll.ch>2013-04-05 14:47:19 -0400
commit9e9dd0e889c76c786e8f2e164c825c3c06dea30c (patch)
tree8779843ddddd13a7ce46f878e7d146afad1cf7f6 /drivers/gpu/drm/i915/intel_lvds.c
parentf47709a9502f3715cc488b788ca91cf0c142b1b1 (diff)
drm/i915: Add no-lvds quirk for Fujitsu Esprimo Q900
The "Mobile Sandy Bridge CPUs" in the Fujitsu Esprimo Q900 mini desktop PCs are probably misleading the LVDS detection code in intel_lvds_supported. Nothing is connected to the LVDS ports in these systems. Signed-off-by: Christian Lamparter <chunkeey@googlemail.com> Cc: stable@vger.kernel.org Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_lvds.c')
-rw-r--r--drivers/gpu/drm/i915/intel_lvds.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c
index 7b6d07b6a02d..ca2d903c19bb 100644
--- a/drivers/gpu/drm/i915/intel_lvds.c
+++ b/drivers/gpu/drm/i915/intel_lvds.c
@@ -862,6 +862,14 @@ static const struct dmi_system_id intel_no_lvds[] = {
862 DMI_MATCH(DMI_PRODUCT_NAME, "X7SPA-H"), 862 DMI_MATCH(DMI_PRODUCT_NAME, "X7SPA-H"),
863 }, 863 },
864 }, 864 },
865 {
866 .callback = intel_no_lvds_dmi_callback,
867 .ident = "Fujitsu Esprimo Q900",
868 .matches = {
869 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
870 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Q900"),
871 },
872 },
865 873
866 { } /* terminating entry */ 874 { } /* terminating entry */
867}; 875};