diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-01-22 22:28:32 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-01-22 22:28:32 +0000 |
commit | d9422751dfbafc2965c209973bacc32c83303163 (patch) | |
tree | 01e09c37defac682c47e1ed60b6bdcb1702c5377 | |
parent | 642a6836352b45b23e138fdb17f69066f7a40d9a (diff) |
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.c | 10 |
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 */ }; |