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

Commit 645378d8 authored by Rob Pearce's avatar Rob Pearce Committed by Daniel Vetter
Browse files

drm/i915: No LVDS hardware on Intel D410PT and D425KT



The Intel D410PT(LW) and D425KT Mini-ITX desktop boards both show up as
having LVDS but the hardware is not populated. This patch adds them to
the list of such systems. Patch is against 3.11.4

v2: Patch revised to match the D425KT exactly as the D425KTW does have
LVDS.  According to Intel's documentation, the D410PTL and D410PLTW
don't.

Signed-off-by: default avatarRob Pearce <rob@flitspace.org.uk>
Cc: stable@vger.kernel.org
[danvet: Pimp commit message to my liking and add cc: stable.]
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent c6cd2ee2
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -698,6 +698,22 @@ static const struct dmi_system_id intel_no_lvds[] = {
			DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Q900"),
		},
	},
	{
		.callback = intel_no_lvds_dmi_callback,
		.ident = "Intel D410PT",
		.matches = {
			DMI_MATCH(DMI_BOARD_VENDOR, "Intel"),
			DMI_MATCH(DMI_BOARD_NAME, "D410PT"),
		},
	},
	{
		.callback = intel_no_lvds_dmi_callback,
		.ident = "Intel D425KT",
		.matches = {
			DMI_MATCH(DMI_BOARD_VENDOR, "Intel"),
			DMI_EXACT_MATCH(DMI_BOARD_NAME, "D425KT"),
		},
	},
	{
		.callback = intel_no_lvds_dmi_callback,
		.ident = "Intel D510MO",