aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorJarod Wilson <jarod@redhat.com>2009-05-27 17:20:39 -0400
committerEric Anholt <eric@anholt.net>2009-06-05 14:22:30 +0000
commit70aa96ca2d8d938fc036ef8fd189b0151f4fc3ba (patch)
tree2010e1370ba5e12f71dde27da2b297fe4a400ed2 /drivers/gpu
parentdrm/i915: Initialize the SDVO device based on the sdvo info parsed from VBT (diff)
downloadlinux-dev-70aa96ca2d8d938fc036ef8fd189b0151f4fc3ba.tar.xz
linux-dev-70aa96ca2d8d938fc036ef8fd189b0151f4fc3ba.zip
drm/i915: add ignore lvds quirk info for AOpen Mini PC
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> Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/i915/intel_lvds.c10
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 eea3a548b82a..e4ca6a3cdbbc 100644
--- a/drivers/gpu/drm/i915/intel_lvds.c
+++ b/drivers/gpu/drm/i915/intel_lvds.c
@@ -485,8 +485,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 */
};