summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsg <jsg@openbsd.org>2014-01-22 22:33:24 +0000
committerjsg <jsg@openbsd.org>2014-01-22 22:33:24 +0000
commit52eec0609be8bfd8ea74011985c0565482be0ec4 (patch)
tree7f58d5c11037e7ce4e8b582a82adabadfc4f24f3
parentSupport paste key in copy mode input (for search etc). Also clamp length (diff)
downloadwireguard-openbsd-52eec0609be8bfd8ea74011985c0565482be0ec4.tar.xz
wireguard-openbsd-52eec0609be8bfd8ea74011985c0565482be0ec4.zip
drm/i915: No LVDS hardware on Intel D410PT and D425KT
From Rob Pearce 4694d14ae2ffe12fa49f4b3e57d5c7a6b74c0856 in ubuntu 3.8 645378d85ee524e429aa4cf52806047b56cdc596 in mainline linux
-rw-r--r--sys/dev/pci/drm/i915/intel_lvds.c18
1 files changed, 17 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/i915/intel_lvds.c b/sys/dev/pci/drm/i915/intel_lvds.c
index d89727df42f..6c18e639ef4 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.10 2014/01/22 22:28:31 jsg Exp $ */
+/* $OpenBSD: intel_lvds.c,v 1.11 2014/01/22 22:33:24 jsg Exp $ */
/*
* Copyright © 2006-2007 Intel Corporation
* Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
@@ -813,6 +813,22 @@ static const struct dmi_system_id intel_no_lvds[] = {
},
{
.callback = intel_no_lvds_dmi_callback,
+ .ident = "Intel D410PT",
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "Intel"),
+ DMI_MATCH(DMI_BOARD_NAME, "D410PT"),
+ },
+ },
+ {
+ .callback = intel_no_lvds_dmi_callback,
+ .ident = "Intel D425KT",
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "Intel"),
+ DMI_EXACT_MATCH(DMI_BOARD_NAME, "D425KT"),
+ },
+ },
+ {
+ .callback = intel_no_lvds_dmi_callback,
.ident = "Intel D510MO",
.matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "Intel"),