diff options
author | 2014-01-22 22:21:52 +0000 | |
---|---|---|
committer | 2014-01-22 22:21:52 +0000 | |
commit | d29803722ae54c878f86c621c4489c05f79c88c9 (patch) | |
tree | 3348fd905b6b9a6076e6adc4a4c613a91ae47eee | |
parent | add explicit_bzero to NAME; (diff) | |
download | wireguard-openbsd-d29803722ae54c878f86c621c4489c05f79c88c9.tar.xz wireguard-openbsd-d29803722ae54c878f86c621c4489c05f79c88c9.zip |
drm/i915: quirk away phantom LVDS on Intel's D510MO mainboard
From Chris Wilson
b818e76978dda65f9c749970ebef14490eb93387 in ubuntu 3.8
e5614f0c2d0f4d7f0b8ef745d34593baf2c5dbf8 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 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 */ }; |