042ba03
From ab737b006568d01204cc51368c7e2067eecb2cff Mon Sep 17 00:00:00 2001
042ba03
From: Hans de Goede <hdegoede@redhat.com>
042ba03
Date: Thu, 7 Apr 2011 13:31:57 +0200
042ba03
Subject: [PATCH] drm/i915: Add a no lvds quirk for the Asus EeeBox PC EB1007
042ba03
042ba03
I found this while figuring out why gnome-shell would not run on my
042ba03
Asus EeeBox PC EB1007. As a standalone "pc" this device cleary does not have
042ba03
an internal panel, yet it claims it does. Add a quirk to fix this.
042ba03
042ba03
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
042ba03
---
042ba03
 drivers/gpu/drm/i915/intel_lvds.c |    8 ++++++++
042ba03
 1 files changed, 8 insertions(+), 0 deletions(-)
042ba03
042ba03
diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c
042ba03
index a562bd2..954822a 100644
042ba03
--- a/drivers/gpu/drm/i915/intel_lvds.c
042ba03
+++ b/drivers/gpu/drm/i915/intel_lvds.c
042ba03
@@ -724,6 +724,14 @@ static const struct dmi_system_id intel_no_lvds[] = {
042ba03
 			DMI_MATCH(DMI_PRODUCT_NAME, "U800"),
042ba03
 		},
042ba03
 	},
042ba03
+	{
042ba03
+		.callback = intel_no_lvds_dmi_callback,
042ba03
+		.ident = "Asus EeeBox PC EB1007",
042ba03
+		.matches = {
042ba03
+			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer INC."),
042ba03
+			DMI_MATCH(DMI_PRODUCT_NAME, "EB1007"),
042ba03
+		},
042ba03
+	},
042ba03
 
042ba03
 	{ }	/* terminating entry */
042ba03
 };
042ba03
-- 
042ba03
1.7.4.2
042ba03