From patchwork Fri Apr 12 12:24:43 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Ben Mesman (Bossers & Cnossen BV)" X-Patchwork-Id: 2435201 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork1.kernel.org (Postfix) with ESMTP id 969EE3FD40 for ; Fri, 12 Apr 2013 12:32:21 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 83BFAE606D for ; Fri, 12 Apr 2013 05:32:21 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org X-Greylist: delayed 427 seconds by postgrey-1.32 at gabe; Fri, 12 Apr 2013 05:32:09 PDT Received: from mail.mesman.eu (host-114-113.kabel.netvisit.nl [213.109.114.113]) by gabe.freedesktop.org (Postfix) with ESMTP id B6958E5C98 for ; Fri, 12 Apr 2013 05:32:09 -0700 (PDT) Received: from twoflower.bnc.local (D4CB1F3E.static.ziggozakelijk.nl [212.203.31.62]) by mail.mesman.eu (Postfix) with ESMTPSA id 12A8E3FE04; Fri, 12 Apr 2013 14:25:00 +0200 (CEST) From: Ben Mesman To: Daniel Vetter Subject: [PATCH] drm/i915: no lvds quirk for hp t5740 Date: Fri, 12 Apr 2013 14:24:43 +0200 Message-Id: <1365769483-16706-1-git-send-email-ben@bnc.nl> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <2209078F92755E409EE9E33312D5D53804A5A222@VMBNCEX01.bnc.local> References: <2209078F92755E409EE9E33312D5D53804A5A222@VMBNCEX01.bnc.local> Cc: "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: , MIME-Version: 1.0 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 Last year, a patch was made for the "HP t5740e Thin Client" (see http://lists.freedesktop.org/archives/dri-devel/2012-May/023245.html). This device reports an lvds panel, but does not really have one. The predecessor of this device is the "hp t5740", which also does not have an lvds panel. This patch will add the same quirk for this device. Signed-off-by: Ben Mesman --- drivers/gpu/drm/i915/intel_lvds.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c index ca2d903..8a56d9b 100644 --- a/drivers/gpu/drm/i915/intel_lvds.c +++ b/drivers/gpu/drm/i915/intel_lvds.c @@ -816,6 +816,14 @@ static const struct dmi_system_id intel_no_lvds[] = { }, { .callback = intel_no_lvds_dmi_callback, + .ident = "Hewlett-Packard hp t5740", + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"), + DMI_MATCH(DMI_PRODUCT_NAME, "hp t5740"), + }, + }, + { + .callback = intel_no_lvds_dmi_callback, .ident = "Hewlett-Packard HP t5740e Thin Client", .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),