From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anisse Astier Subject: Re: [PATCH] drm/i915: no-lvds quirk on MSI DC500 Date: Thu, 22 Mar 2012 23:12:38 +0100 Message-ID: References: <1331141795-306-1-git-send-email-anisse@astier.eu> <20120313151603.4992dfa7@destiny.ordissimo> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Return-path: Received: from mail-qc0-f177.google.com (mail-qc0-f177.google.com [209.85.216.177]) by gabe.freedesktop.org (Postfix) with ESMTP id B905E9E90F for ; Thu, 22 Mar 2012 15:12:59 -0700 (PDT) Received: by qcsu28 with SMTP id u28so1847583qcs.36 for ; Thu, 22 Mar 2012 15:12:58 -0700 (PDT) In-Reply-To: <20120313151603.4992dfa7@destiny.ordissimo> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dri-devel-bounces+sf-dri-devel=m.gmane.org@lists.freedesktop.org Errors-To: dri-devel-bounces+sf-dri-devel=m.gmane.org@lists.freedesktop.org To: dri-devel@lists.freedesktop.org Cc: ajax@freedesktop.org, Daniel Vetter List-Id: dri-devel@lists.freedesktop.org Hi again, Could anyone have a look at this ? On Tue, Mar 13, 2012 at 3:16 PM, Anisse Astier wrote: > > Any opinion on this quirk ? > > On Wed, =A07 Mar 2012 18:36:35 +0100, Anisse Astier wr= ote > : > > > This hardware doesn't have an LVDS, it's a desktop box. Fix incorrect > > LVDS detection. > > > > Cc: stable@kernel.org > > Signed-off-by: Anisse Astier > > --- > > =A0drivers/gpu/drm/i915/intel_lvds.c | =A0 =A08 ++++++++ > > =A01 files changed, 8 insertions(+), 0 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/intel_lvds.c > > b/drivers/gpu/drm/i915/intel_lvds.c > > index b103c3b..2dee11e 100644 > > --- a/drivers/gpu/drm/i915/intel_lvds.c > > +++ b/drivers/gpu/drm/i915/intel_lvds.c > > @@ -739,6 +739,14 @@ static const struct dmi_system_id intel_no_lvds[] = =3D > > { > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 DMI_MATCH(DMI_BOARD_NAME, "= AT5NM10T-I"), > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 }, > > =A0 =A0 =A0 }, > > + =A0 =A0 { > > + =A0 =A0 =A0 =A0 =A0 =A0 .callback =3D intel_no_lvds_dmi_callback, > > + =A0 =A0 =A0 =A0 =A0 =A0 .ident =3D "MSI Wind Box DC500", > > + =A0 =A0 =A0 =A0 =A0 =A0 .matches =3D { > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 DMI_MATCH(DMI_BOARD_VENDOR, "= MICRO-STAR > > INTERNATIONAL CO., LTD"), > > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 DMI_MATCH(DMI_BOARD_NAME, "MS= -7469"), > > + =A0 =A0 =A0 =A0 =A0 =A0 }, > > + =A0 =A0 }, > > > > =A0 =A0 =A0 { } =A0 =A0 /* terminating entry */ > > =A0};