All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Disable LVDS output on Clientron E830 Thin Client
@ 2011-12-27 17:06 Joel Sass
  2012-01-04 16:44 ` Adam Jackson
  0 siblings, 1 reply; 3+ messages in thread
From: Joel Sass @ 2011-12-27 17:06 UTC (permalink / raw)
  To: dri-devel

Dear developers,

I've been directed here by Stephan Graber, and Joseph Salisbury. Stephan 
has helped me through my first kernel patch, and I am following along 
with the steps he took pertaining to the following bug: 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/544671

I am working on a bug located here: 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/907055 and have 
already submitted a patch. Mr Salisbury recommended I contact the 
upstream developers in order to have them work this in to the next 
release, so here I am.

I have an Intel Atom thin clients with Intel 945GM video cards 
installed. They report an LVDS output as active, even though these thin 
clients do not have a monitor attached. This is causing the clients to 
boot in dual-head mode, with one monitor missing.

Thanks everyone for your time.

The bug above has the patch listed in there, but I will include it again 
below:

--- ./intel_lvds.old    2011-12-20 13:25:49.368291249 -0500
+++ ./intel_lvds.c    2011-12-20 13:26:05.160291248 -0500
@@ -709,6 +709,14 @@
      },
      {
          .callback = intel_no_lvds_dmi_callback,
+        .ident = "Clientron E830",
+        .matches = {
+            DMI_MATCH(DMI_SYS_VENDOR, "Clientron"),
+            DMI_MATCH(DMI_PRODUCT_NAME, "E830"),
+        },
+    },
+    {
+        .callback = intel_no_lvds_dmi_callback,
          .ident = "Asus EeeBox PC EB1007",
          .matches = {
              DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer INC."),

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

* Re: [PATCH] Disable LVDS output on Clientron E830 Thin Client
  2011-12-27 17:06 [PATCH] Disable LVDS output on Clientron E830 Thin Client Joel Sass
@ 2012-01-04 16:44 ` Adam Jackson
  2012-01-10 18:03   ` [PATCH] drm/i915: Add Clientron E830 to the ignore LVDS list Joel Sass
  0 siblings, 1 reply; 3+ messages in thread
From: Adam Jackson @ 2012-01-04 16:44 UTC (permalink / raw)
  To: Joel Sass; +Cc: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 739 bytes --]

On Tue, 2011-12-27 at 12:06 -0500, Joel Sass wrote:

> --- ./intel_lvds.old    2011-12-20 13:25:49.368291249 -0500
> +++ ./intel_lvds.c    2011-12-20 13:26:05.160291248 -0500
> @@ -709,6 +709,14 @@
>       },
>       {
>           .callback = intel_no_lvds_dmi_callback,
> +        .ident = "Clientron E830",
> +        .matches = {
> +            DMI_MATCH(DMI_SYS_VENDOR, "Clientron"),
> +            DMI_MATCH(DMI_PRODUCT_NAME, "E830"),
> +        },
> +    },
> +    {
> +        .callback = intel_no_lvds_dmi_callback,
>           .ident = "Asus EeeBox PC EB1007",
>           .matches = {
>               DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer INC."),

Reviewed-by: Adam Jackson <ajax@redhat.com>

- ajax

[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [PATCH] drm/i915: Add Clientron E830 to the ignore LVDS list
  2012-01-04 16:44 ` Adam Jackson
@ 2012-01-10 18:03   ` Joel Sass
  0 siblings, 0 replies; 3+ messages in thread
From: Joel Sass @ 2012-01-10 18:03 UTC (permalink / raw)
  To: keithp; +Cc: dri-devel, Joel Sass

From: Joel Sass <sass.joel@gmail.com>

Signed-off-by: Joel Sass <jsass@disklessworkstations.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
---
 drivers/gpu/drm/i915/intel_lvds.c |    8 ++++++++
 1 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 77578b4..e44988e 100644
--- a/drivers/gpu/drm/i915/intel_lvds.c
+++ b/drivers/gpu/drm/i915/intel_lvds.c
@@ -708,6 +708,14 @@ static const struct dmi_system_id intel_no_lvds[] = {
 		},
 	},
 	{
+                .callback = intel_no_lvds_dmi_callback,
+                .ident = "Clientron E830",
+                .matches = {
+                        DMI_MATCH(DMI_SYS_VENDOR, "Clientron"),
+                        DMI_MATCH(DMI_PRODUCT_NAME, "E830"),
+                },
+        },
+        {
 		.callback = intel_no_lvds_dmi_callback,
 		.ident = "Asus EeeBox PC EB1007",
 		.matches = {
-- 
1.7.0.4

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

end of thread, other threads:[~2012-01-10 18:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-27 17:06 [PATCH] Disable LVDS output on Clientron E830 Thin Client Joel Sass
2012-01-04 16:44 ` Adam Jackson
2012-01-10 18:03   ` [PATCH] drm/i915: Add Clientron E830 to the ignore LVDS list Joel Sass

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.