Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9e9dd0e8 authored by Christian Lamparter's avatar Christian Lamparter Committed by Daniel Vetter
Browse files

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: default avatarChristian Lamparter <chunkeey@googlemail.com>
Cc: stable@vger.kernel.org
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent f47709a9
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -862,6 +862,14 @@ static const struct dmi_system_id intel_no_lvds[] = {
			DMI_MATCH(DMI_PRODUCT_NAME, "X7SPA-H"),
		},
	},
	{
		.callback = intel_no_lvds_dmi_callback,
		.ident = "Fujitsu Esprimo Q900",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
			DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Q900"),
		},
	},

	{ }	/* terminating entry */
};