summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2014-01-22 22:21:53 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2014-01-22 22:21:53 +0000
commite1f8612de99baa20171da82e5bb087c909cbc4c5 (patch)
tree3c5408a02d919080b5d1f0ee094c42c0f95be4e1 /sys
parenta2b1612606a61d0d64fa52ba40bfffcee21befbb (diff)
drm/i915: quirk away phantom LVDS on Intel's D510MO mainboard
From Chris Wilson b818e76978dda65f9c749970ebef14490eb93387 in ubuntu 3.8 e5614f0c2d0f4d7f0b8ef745d34593baf2c5dbf8 in mainline linux
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/drm/i915/intel_lvds.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/i915/intel_lvds.c b/sys/dev/pci/drm/i915/intel_lvds.c
index bcbd68a057a..c9b75ce899d 100644
--- a/sys/dev/pci/drm/i915/intel_lvds.c
+++ b/sys/dev/pci/drm/i915/intel_lvds.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: intel_lvds.c,v 1.8 2014/01/22 05:16:55 kettenis Exp $ */
+/* $OpenBSD: intel_lvds.c,v 1.9 2014/01/22 22:21:52 jsg Exp $ */
/*
* Copyright © 2006-2007 Intel Corporation
* Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
@@ -811,6 +811,14 @@ static const struct dmi_system_id intel_no_lvds[] = {
DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Q900"),
},
},
+ {
+ .callback = intel_no_lvds_dmi_callback,
+ .ident = "Intel D510MO",
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "Intel"),
+ DMI_EXACT_MATCH(DMI_BOARD_NAME, "D510MO"),
+ },
+ },
{ } /* terminating entry */
};