summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsg <jsg@openbsd.org>2014-01-22 22:28:31 +0000
committerjsg <jsg@openbsd.org>2014-01-22 22:28:31 +0000
commit0f08662644f5426f54e9ededeb6fdbf9c22228d5 (patch)
tree2a74f027bf1edd8fa5969df405870eea67000466
parentOnly kick the iopool if we've just established a new connection to the server. (diff)
downloadwireguard-openbsd-0f08662644f5426f54e9ededeb6fdbf9c22228d5.tar.xz
wireguard-openbsd-0f08662644f5426f54e9ededeb6fdbf9c22228d5.zip
drm/i915: quirk away phantom LVDS on Intel's D525MW mainboard
From Jani Nikula 24498530d1a0246d7995baa386ee4fc0208911b2 in in ubuntu 3.8 dcf6d294830d46b0e6901477fb4bf455281d90c8 in mainline linux
-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 c9b75ce899d..d89727df42f 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.9 2014/01/22 22:21:52 jsg Exp $ */
+/* $OpenBSD: intel_lvds.c,v 1.10 2014/01/22 22:28:31 jsg Exp $ */
/*
* Copyright © 2006-2007 Intel Corporation
* Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
@@ -819,6 +819,14 @@ static const struct dmi_system_id intel_no_lvds[] = {
DMI_EXACT_MATCH(DMI_BOARD_NAME, "D510MO"),
},
},
+ {
+ .callback = intel_no_lvds_dmi_callback,
+ .ident = "Intel D525MW",
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "Intel"),
+ DMI_EXACT_MATCH(DMI_BOARD_NAME, "D525MW"),
+ },
+ },
{ } /* terminating entry */
};