public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm: intel: add ignore lvds quirk info for AOpen Mini PC
@ 2009-05-27 21:20 Jarod Wilson
  2009-06-01 11:01 ` Jesse Barnes
  0 siblings, 1 reply; 5+ messages in thread
From: Jarod Wilson @ 2009-05-27 21:20 UTC (permalink / raw)
  To: dri-devel; +Cc: linux-kernel, xorg-devel, Eric Anholt, Florian Demmer

Fix a FIXME in the intel LVDS bring-up code, adding the appropriate
blacklist entry for the AOpen Mini PC, courtesy of a dmidecode
dump from Florian Demmer.

Signed-off-by: Jarod Wilson <jarod@redhat.com>
CC: Florian Demmer <florian@demmer.org>

---
 drivers/gpu/drm/i915/intel_lvds.c |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c
index 439a865..7ac00c3 100644
--- a/drivers/gpu/drm/i915/intel_lvds.c
+++ b/drivers/gpu/drm/i915/intel_lvds.c
@@ -424,8 +424,14 @@ static const struct dmi_system_id __initdata intel_no_lvds[] = {
 			DMI_MATCH(DMI_PRODUCT_NAME, "Studio Hybrid 140g"),
 		},
 	},
-
-	/* FIXME: add a check for the Aopen Mini PC */
+	{
+		.callback = intel_no_lvds_dmi_callback,
+		.ident = "AOpen Mini PC",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "AOpen"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "i965GMx-IF"),
+		},
+	},
 
 	{ }	/* terminating entry */
 };

-- 
Jarod Wilson
jarod@redhat.com

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] drm: intel: add ignore lvds quirk info for AOpen Mini PC
  2009-05-27 21:20 [PATCH] drm: intel: add ignore lvds quirk info for AOpen Mini PC Jarod Wilson
@ 2009-06-01 11:01 ` Jesse Barnes
  2009-06-01 15:54   ` Jarod Wilson
  0 siblings, 1 reply; 5+ messages in thread
From: Jesse Barnes @ 2009-06-01 11:01 UTC (permalink / raw)
  To: Jarod Wilson; +Cc: dri-devel, xorg-devel, linux-kernel, Florian Demmer, eric

On Wed, 27 May 2009 17:20:39 -0400
Jarod Wilson <jarod@redhat.com> wrote:

> Fix a FIXME in the intel LVDS bring-up code, adding the appropriate
> blacklist entry for the AOpen Mini PC, courtesy of a dmidecode
> dump from Florian Demmer.
> 
> Signed-off-by: Jarod Wilson <jarod@redhat.com>
> CC: Florian Demmer <florian@demmer.org>
> 
> ---
>  drivers/gpu/drm/i915/intel_lvds.c |   10 ++++++++--
>  1 files changed, 8 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/intel_lvds.c
> b/drivers/gpu/drm/i915/intel_lvds.c index 439a865..7ac00c3 100644
> --- a/drivers/gpu/drm/i915/intel_lvds.c
> +++ b/drivers/gpu/drm/i915/intel_lvds.c
> @@ -424,8 +424,14 @@ static const struct dmi_system_id __initdata
> intel_no_lvds[] = { DMI_MATCH(DMI_PRODUCT_NAME, "Studio Hybrid 140g"),
>  		},
>  	},
> -
> -	/* FIXME: add a check for the Aopen Mini PC */
> +	{
> +		.callback = intel_no_lvds_dmi_callback,
> +		.ident = "AOpen Mini PC",
> +		.matches = {
> +			DMI_MATCH(DMI_SYS_VENDOR, "AOpen"),
> +			DMI_MATCH(DMI_PRODUCT_NAME, "i965GMx-IF"),
> +		},
> +	},
>  
>  	{ }	/* terminating entry */
>  };
> 

Looks fine to me, Eric?  Patches to the i915 driver should generally go
to intel-gfx@lists.freedesktop.org so we don't miss them.  Thanks.

Acked-by: Jesse Barnes <jbarnes@virtuousgeek.org>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] drm: intel: add ignore lvds quirk info for AOpen Mini PC
  2009-06-01 11:01 ` Jesse Barnes
@ 2009-06-01 15:54   ` Jarod Wilson
  2009-06-01 16:11     ` Joe Perches
  0 siblings, 1 reply; 5+ messages in thread
From: Jarod Wilson @ 2009-06-01 15:54 UTC (permalink / raw)
  To: Jesse Barnes; +Cc: dri-devel, xorg-devel, linux-kernel, Florian Demmer, eric

On Monday 01 June 2009 07:01:26 Jesse Barnes wrote:
> Patches to the i915 driver should generally go
> to intel-gfx@lists.freedesktop.org so we don't miss them.  Thanks.

Ah, sorry, didn't know that. Might I suggest adding a note to that
effect in MAINTAINERS? Reasonably sure that's where I looked to try
to figure out where to send a prior i915 patch and I don't see a
ref to that list in there now.

-- 
Jarod Wilson
jarod@redhat.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] drm: intel: add ignore lvds quirk info for AOpen Mini PC
  2009-06-01 15:54   ` Jarod Wilson
@ 2009-06-01 16:11     ` Joe Perches
  2009-06-01 16:17       ` Jesse Barnes
  0 siblings, 1 reply; 5+ messages in thread
From: Joe Perches @ 2009-06-01 16:11 UTC (permalink / raw)
  To: Jarod Wilson
  Cc: Jesse Barnes, dri-devel, xorg-devel, linux-kernel, Florian Demmer,
	eric

On Mon, 2009-06-01 at 11:54 -0400, Jarod Wilson wrote:
> On Monday 01 June 2009 07:01:26 Jesse Barnes wrote:
> > Patches to the i915 driver should generally go
> > to intel-gfx@lists.freedesktop.org so we don't miss them.  Thanks.

Does that apply to the i810 and i830 as well?



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] drm: intel: add ignore lvds quirk info for AOpen Mini PC
  2009-06-01 16:11     ` Joe Perches
@ 2009-06-01 16:17       ` Jesse Barnes
  0 siblings, 0 replies; 5+ messages in thread
From: Jesse Barnes @ 2009-06-01 16:17 UTC (permalink / raw)
  To: Joe Perches
  Cc: Jarod Wilson, dri-devel, xorg-devel, linux-kernel, Florian Demmer,
	eric

On Mon, 01 Jun 2009 09:11:41 -0700
Joe Perches <joe@perches.com> wrote:

> On Mon, 2009-06-01 at 11:54 -0400, Jarod Wilson wrote:
> > On Monday 01 June 2009 07:01:26 Jesse Barnes wrote:
> > > Patches to the i915 driver should generally go
> > > to intel-gfx@lists.freedesktop.org so we don't miss them.  Thanks.
> 
> Does that apply to the i810 and i830 as well?

Those drivers are fairly abandoned afaik, so I'm not sure where patches
to them should go.  In fact I think i830 is deprecated in favor of
i915... so it should probably just be killed.

Jesse

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-06-01 16:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-27 21:20 [PATCH] drm: intel: add ignore lvds quirk info for AOpen Mini PC Jarod Wilson
2009-06-01 11:01 ` Jesse Barnes
2009-06-01 15:54   ` Jarod Wilson
2009-06-01 16:11     ` Joe Perches
2009-06-01 16:17       ` Jesse Barnes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox