From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rob Pearce Subject: [PATCH] INTEL DRM DRIVERS : No LVDS hardware on Intel D410PT and D425KT Date: Sun, 27 Oct 2013 16:13:42 +0000 Message-ID: <526D3BB6.6020902@flitspace.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Sender: linux-kernel-owner@vger.kernel.org To: Daniel Vetter Cc: David Airlie , intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org List-Id: intel-gfx@lists.freedesktop.org From: Rob Pearce 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 Signed-off-by: Rob Pearce --- Patch revised to match the D425KT exactly as the D425KTW does have LVDS. According to Intel's documentation, the D410PTL and D410PLTW don't. diff -uprN -X linux-3.11.4/Documentation/dontdiff linux-3.11.4/drivers/gpu/drm/i915/intel_lvds.c linux-3.11.4-ovs/drivers/gpu/drm/i915/intel_lvds.c --- linux-3.11.4/drivers/gpu/drm/i915/intel_lvds.c 2013-10-22 19:00:30.000000000 +0100 +++ linux-3.11.4-ovs/drivers/gpu/drm/i915/intel_lvds.c 2013-10-27 15:51:25.000000000 +0000 @@ -696,6 +696,22 @@ }, { .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", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Intel"),