From patchwork Sun Oct 27 13:35:30 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rob Pearce X-Patchwork-Id: 3099511 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 08C51BF924 for ; Sun, 27 Oct 2013 16:08:36 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3367A201FD for ; Sun, 27 Oct 2013 16:08:35 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 2F105200D9 for ; Sun, 27 Oct 2013 16:08:34 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 0E9CAE6DC4 for ; Sun, 27 Oct 2013 09:08:34 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org X-Greylist: delayed 375 seconds by postgrey-1.32 at gabe; Sun, 27 Oct 2013 06:41:49 PDT Received: from mail.ukfsn.org (mail.ukfsn.org [5.9.116.23]) by gabe.freedesktop.org (Postfix) with ESMTP id 2115AE5F4B for ; Sun, 27 Oct 2013 06:41:49 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by mail.ukfsn.org (Postfix) with SMTP id 3EB61DC114A for ; Sun, 27 Oct 2013 13:35:33 +0000 (GMT) Received: from fairview.ukfsn.org (87-127-71-219.static.enta.net [87.127.71.219]) by mail.ukfsn.org (Postfix) with ESMTPA id 553A4DC0132; Sun, 27 Oct 2013 13:35:32 +0000 (GMT) Received: from [192.168.0.20] (isaiah.huneausware.local [192.168.0.20]) by fairview.ukfsn.org (Postfix) with ESMTP id F16E768EAEC; Sun, 27 Oct 2013 13:35:30 +0000 (GMT) Message-ID: <526D16A2.60804@flitspace.org.uk> Date: Sun, 27 Oct 2013 13:35:30 +0000 From: Rob Pearce User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20131014 Thunderbird/17.0.9 MIME-Version: 1.0 To: Daniel Vetter Subject: [PATCH] INTEL DRM DRIVERS : No LVDS hardware on Intel D410PT and D425KT X-DSPAM-Result: Innocent X-DSPAM-Processed: Sun Oct 27 13:35:33 2013 X-DSPAM-Confidence: 1.0000 X-DSPAM-Probability: 0.0023 X-DSPAM-Signature: 526d16a546961094120233 X-Mailman-Approved-At: Sun, 27 Oct 2013 08:46:36 -0700 Cc: intel-gfx@lists.freedesktop.org, linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org X-Spam-Status: No, score=-4.7 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Rob Pearce These Intel D410PT 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. Tested against 3.9.10 and 3.11.4 Signed-off-by: Rob Pearce diff -uprN -X linux-3.9.10/Documentation/dontdiff linux-3.9.10/drivers/gpu/drm/i915/intel_lvds.c linux-3.9.10-ovs/drivers/gpu/drm/i915/intel_lvds.c --- linux-3.9.10/drivers/gpu/drm/i915/intel_lvds.c 2013-10-22 19:00:30.000000000 +0100 +++ linux-3.9.10-ovs/drivers/gpu/drm/i915/intel_lvds.c 2013-10-22 18:58:56.000000000 +0100 @@ -843,6 +843,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_MATCH(DMI_BOARD_NAME, "D425KT"), + }, + }, + { + .callback = intel_no_lvds_dmi_callback, .ident = "Supermicro X7SPA-H", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),