diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2013-04-14 04:49:23 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2013-04-14 04:49:23 +0000 |
commit | eed31596591bfe33ee9e2cea7e8c4201c95c6366 (patch) | |
tree | 03a280e48d74358b8fc9da5d39bb10e3fd168971 /sys/dev | |
parent | 4e96026431314375fe5492db2a3001202eec06ca (diff) |
add some acer quirks from linux 3.8.7
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/drm/i915/intel_display.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/i915/intel_display.c b/sys/dev/pci/drm/i915/intel_display.c index 66fc2d0f3fb..7c9141d90d7 100644 --- a/sys/dev/pci/drm/i915/intel_display.c +++ b/sys/dev/pci/drm/i915/intel_display.c @@ -1,4 +1,4 @@ -/* $OpenBSD: intel_display.c,v 1.3 2013/04/08 05:43:33 jsg Exp $ */ +/* $OpenBSD: intel_display.c,v 1.4 2013/04/14 04:49:22 jsg Exp $ */ /* * Copyright © 2006-2007 Intel Corporation * @@ -9520,6 +9520,15 @@ static struct intel_quirk intel_quirks[] = { /* Acer Aspire 4736Z */ { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness }, + + /* Acer/eMachines G725 */ + { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness }, + + /* Acer/eMachines e725 */ + { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness }, + + /* Acer/Packard Bell NCL20 */ + { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness }, }; void |