diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2013-07-04 09:42:47 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2013-07-04 09:42:47 +0000 |
commit | 9c2b9e1aa34e010d0d7bf9c11151a1a26f70bcf7 (patch) | |
tree | a185819d6d2e0788ccec7b5414d133df0e076c8a /sys | |
parent | 20b1300d1626d77d2e32e988e5e7e9b50438ca23 (diff) |
Add no-lvds quirk for Fujitsu Esprimo Q900
from linux 3.8.13
Diffstat (limited to 'sys')
-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 3dc1e126154..f598c46d9cf 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.1 2013/03/18 12:36:52 jsg Exp $ */ +/* $OpenBSD: intel_lvds.c,v 1.2 2013/07/04 09:42:46 jsg Exp $ */ /* * Copyright © 2006-2007 Intel Corporation * Copyright (c) 2006 Dave Airlie <airlied@linux.ie> @@ -853,6 +853,14 @@ static const struct dmi_system_id intel_no_lvds[] = { DMI_MATCH(DMI_PRODUCT_NAME, "X7SPA-H"), }, }, + { + .callback = intel_no_lvds_dmi_callback, + .ident = "Fujitsu Esprimo Q900", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), + DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Q900"), + }, + }, { } /* terminating entry */ }; |